diff --git a/EVURLCache.podspec b/EVURLCache.podspec index f25bb50..21dfbc8 100755 --- a/EVURLCache.podspec +++ b/EVURLCache.podspec @@ -8,7 +8,7 @@ Pod::Spec.new do |s| # s.name = "EVURLCache" -s.version = "3.3.0" +s.version = "3.3.1" s.summary = "NSURLCache subclass for handeling all web requests that use NSURLRequest" s.description = "This is a NSURLCache subclass for handeling all web requests that use NSURLRequest. (This includes UIWebView)" s.homepage = "https://github.com/evermeer/EVURLCache" diff --git a/EVURLCache/Pod/EVURLCache.swift b/EVURLCache/Pod/EVURLCache.swift index de66e10..650fb5f 100755 --- a/EVURLCache/Pod/EVURLCache.swift +++ b/EVURLCache/Pod/EVURLCache.swift @@ -122,10 +122,10 @@ open class EVURLCache: URLCache { // Check if there is a cache for this request let storagePath = EVURLCache.storagePathForRequest(request, rootPath: EVURLCache._cacheDirectory) ?? "" if !FileManager.default.fileExists(atPath: storagePath) { - EVURLCache.debugLog("PRECACHE not found \(storagePath)") + EVURLCache.debugLog("CACHE not found \(storagePath)") let storagePath = EVURLCache.storagePathForRequest(request, rootPath: EVURLCache._preCacheDirectory) ?? "" if !FileManager.default.fileExists(atPath: storagePath) { - EVURLCache.debugLog("CACHE not found \(storagePath)") + EVURLCache.debugLog("PRECACHE not found \(storagePath)") return nil } }