From 4c270cfe745bfea097432889cb26e4ee80140121 Mon Sep 17 00:00:00 2001 From: calvin Date: Wed, 18 May 2005 18:04:54 +0000 Subject: [PATCH] log message formatting git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2609 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkcheck/checker/cache.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linkcheck/checker/cache.py b/linkcheck/checker/cache.py index ada49e98..70b72cca 100644 --- a/linkcheck/checker/cache.py +++ b/linkcheck/checker/cache.py @@ -277,7 +277,7 @@ class Cache (linkcheck.lock.AssertLock): output = [] for h in headers.getallmatchingheaders("Set-Cookie"): output.append(h) - linkcheck.log.debug(linkcheck.LOG_CACHE, "Store Cookie %s", h) + linkcheck.log.debug(linkcheck.LOG_CACHE, "Store cookie %s", h) c = self.cookies.setdefault(host, Cookie.SimpleCookie()) c.load(h) return output @@ -291,7 +291,7 @@ class Cache (linkcheck.lock.AssertLock): self.acquire() try: linkcheck.log.debug(linkcheck.LOG_CACHE, - "Get Cookie %s (%s)", host, path) + "Get cookies for host %r path %r", host, path) if not self.cookies.has_key(host): return [] cookievals = []