[GeneralDiscussion] applied to unstable: fix event log message formatting
[email protected] (unstable-repo)
| Newsgroups | gmane.comp.web.zope.zwiki |
|---|---|
| Message-ID | <20080501182531.C13D8465DD2__29197.8866247975$1209666451$gmane$org@mail.joyful.com> |
Thu May 1 11:25:26 PDT 2008 Simon Michael <[email protected]> * fix event log message formatting diff -rN -u old-ZWiki-unstable/Utils.py new-ZWiki-unstable/Utils.py --- old-ZWiki-unstable/Utils.py 2008-05-01 11:25:31.000000000 -0700 +++ new-ZWiki-unstable/Utils.py 2008-05-01 11:25:31.000000000 -0700 @@ -595,7 +595,7 @@ #logging def STDERR(*args): sys.stderr.write(' '.join(map(str,args)) + '\n') -def LOG(severity,*args): zLOG.LOG('ZWiki',severity,' '.join(map(str,args))) +def LOG(severity,*args): zLOG.LOG('ZWiki',severity,' '.join(map(str,*args))) def TRACE(*args): LOG(zLOG.TRACE, args) def DEBUG(*args): LOG(zLOG.DEBUG, args) def BLATHER(*args): LOG(zLOG.BLATHER,args) -- forwarded from http://zwiki.org/GeneralDiscussion#[email protected]