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,