From eef057a37e90030d5115948c5d7bed4a0e7952d5 Mon Sep 17 00:00:00 2001 From: "Rafael.Timmerberg" Date: Wed, 19 Jun 2013 02:25:37 +0200 Subject: [PATCH] improved error log --- lib/config/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config/parser.py b/lib/config/parser.py index fb1361c..d3b6ac3 100644 --- a/lib/config/parser.py +++ b/lib/config/parser.py @@ -147,7 +147,7 @@ class ConfigParser: except KeyError, k: self.log.w("Key '" + str(k) + "' not in classItem " + str(clazzItem)) except Exception, e: - self.log.w("Error while replace: " + clazz + str(e)) + self.log.w("Error while replacing class ( " + clazz + " ):" + str(e)) finally: if path in sys.path: del sys.path[sys.path.index(path)]