From 0a05f2bba1bf5e96cc5b3fb79d0965a57dcc1d24 Mon Sep 17 00:00:00 2001 From: "Vermeer, Edwin" Date: Tue, 20 Jun 2017 08:29:26 +0200 Subject: [PATCH] Switched the log messages. --- EVURLCache.podspec | 2 +- EVURLCache/Pod/EVURLCache.swift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 } }