Update of /cvsroot/wpdev/xmlscripts/scripts/wolfpack
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25770/wolfpack
Modified Files:
consts.py
Log Message:
Fixed log constants for python
Index: consts.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/scripts/wolfpack/consts.py,v
retrieving revision 1.78
retrieving revision 1.79
diff -C2 -d -r1.78 -r1.79
*** consts.py 13 Sep 2004 15:44:44 -0000 1.78
--- consts.py 20 Sep 2004 17:50:32 -0000 1.79
***************
*** 479,489 ****
and the logfile.
"""
! LOG_MESSAGE = 0
! LOG_ERROR = 1
! LOG_PYTHON = 2
! LOG_WARNING = 3
! LOG_NOTICE = 4
! LOG_TRACE = 5
! LOG_DEBUG = 6
"""
\end
--- 479,489 ----
and the logfile.
"""
! LOG_MESSAGE = 0x01
! LOG_ERROR = 0x02
! LOG_PYTHON = 0x04
! LOG_WARNING = 0x08
! LOG_NOTICE = 0x10
! LOG_TRACE = 0x20
! LOG_DEBUG = 0x40
"""
\end
|