[Zope-Checkins] CVS: StandaloneZODB/zLOG - MinimalLogger.py:1.4.8.3
Guido van Rossum
guido@python.org
Wed, 2 Jan 2002 13:26:28 -0500
Update of /cvs-repository/StandaloneZODB/zLOG
In directory cvs.zope.org:/tmp/cvs-serv5973
Modified Files:
Tag: Standby-branch
MinimalLogger.py
Log Message:
Undo the cange I made before -- it breaks the test.
=== StandaloneZODB/zLOG/MinimalLogger.py 1.4.8.2 => 1.4.8.3 ===
if detail:
- buf = ( # "------\n"
+ buf = ("------\n"
"%s %s %s %s\n%s" % (log_time(), severity_string(severity),
subsystem, summary, detail))
else:
- buf = ( # "------\n"
+ buf = ("------\n"
"%s %s %s %s" % (log_time(), severity_string(severity),
subsystem, summary))
print >> _log_dest, buf