summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Madden <jamadden@gmail.com>2017-12-18 10:03:57 -0600
committerJason Madden <jamadden@gmail.com>2017-12-18 10:03:57 -0600
commit01f04dd925d87e23dc49fab3d57d784f878c3d3a (patch)
treea34ee55b7b52a617bd90d33bcfb2154a40945dec
parent07ef06315b25f4e707f5436be563567a661bbc32 (diff)
downloadzope-i18n-01f04dd925d87e23dc49fab3d57d784f878c3d3a.tar.gz
Simplify logging message now that we don't test access to the .mo file.
-rw-r--r--src/zope/i18n/compile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/zope/i18n/compile.py b/src/zope/i18n/compile.py
index b63ebc7..834bf24 100644
--- a/src/zope/i18n/compile.py
+++ b/src/zope/i18n/compile.py
@@ -28,8 +28,8 @@ def compile_mo_file(domain, lc_messages_path):
mo_mtime = _safe_mtime(mofile) or 0
if po_mtime is None:
- logger.debug("Unable to access either %s (%s) or %s (%s)",
- pofile, po_mtime, mofile, mo_mtime)
+ logger.debug("Unable to access %s (%s)",
+ pofile, po_mtime)
return
if po_mtime > mo_mtime: