[Zope-Checkins] CVS: Zope3/lib/python/Zope/ZLogger - FileLogger.py:1.1.240.1
Tres Seaver
tseaver@zope.com
Tue, 12 Feb 2002 15:56:47 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/ZLogger
In directory cvs.zope.org:/tmp/cvs-serv19744/Zope/ZLogger
Modified Files:
Tag: Zope-3x-branch
FileLogger.py
Log Message:
- Normalize file headers.
- Fix violations of "80 character" rule.
=== Zope3/lib/python/Zope/ZLogger/FileLogger.py 1.1 => 1.1.240.1 ===
+#
+# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
+#
+# This software is subject to the provisions of the Zope Public License,
+# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
+# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
+# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
+# FOR A PARTICULAR PURPOSE
+##############################################################################
+"""
+
+$Id$
+"""
+
class FileLogger:
""" a File Logger
@@ -9,5 +25,10 @@
pass
def __call__(self, sub, sev, sum, det, err):
- print 'syslogger %s, %s, %s, %s, %s, %s' % (self, sub, sev, sum, det, err)
+ print 'syslogger %s, %s, %s, %s, %s, %s' % (self,
+ sub,
+ sev,
+ sum,
+ det,
+ err)