[Zope-Checkins] CVS: StandaloneZODB/zLOG - MinimalLogger.py:1.4.8.2

Guido van Rossum guido@python.org
Thu, 27 Dec 2001 15:16:21 -0500


Update of /cvs-repository/StandaloneZODB/zLOG
In directory cvs.zope.org:/tmp/cvs-serv32226

Modified Files:
      Tag: Standby-branch
	MinimalLogger.py 
Log Message:
Reduce vertical size of log output by omitting the "------" separators.


=== StandaloneZODB/zLOG/MinimalLogger.py 1.4.8.1 => 1.4.8.2 ===
 
         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