From bf43fcaf4854daf2c23ee52a18d2b3136b4d840b Mon Sep 17 00:00:00 2001 From: Iman Tumorang Date: Mon, 22 Jun 2020 14:23:44 +0700 Subject: [PATCH] fix: resolve typo on the log (#24) --- roundtriper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundtriper.go b/roundtriper.go index 17e93ef..4b3fe13 100644 --- a/roundtriper.go +++ b/roundtriper.go @@ -33,7 +33,7 @@ type CacheHandler struct { // NewCacheHandlerRoundtrip will create an implementations of cache http roundtripper func NewCacheHandlerRoundtrip(defaultRoundTripper http.RoundTripper, rfcCompliance bool, cacheActor cache.ICacheInteractor) *CacheHandler { if cacheActor == nil { - log.Fatal("cache interactor is nil") + log.Fatal("cache storage is not well set") } return &CacheHandler{ DefaultRoundTripper: defaultRoundTripper,