Public Member Functions | |
| def | From |
| def | __repr__ |
Static Public Attributes | |
| tuple | levels = dict( VERBOSE=1, DEBUG3=60, DEBUG2=70, DEBUG1=80, MONITOR=90, INFO=100, WARNING=110, ERROR=130, FATAL=140, NEVER=99999 ) |
| tuple | From = classmethod(From) |
=============== =========================================
OutputLevel
=============== =========================================
WARNING (110) quiet enough for overview of errors
INFO (100) normal
DEBUG (50) quite a few errors to chase
=============== =========================================
Definition at line 233 of file __init__.py.
| def DybDbi::__init__::Level::From | ( | cls, | ||
| s | ||||
| ) |
Converts level names to DBI OutputLevel enum integers, or vv
Definition at line 236 of file __init__.py.
| def DybDbi::__init__::Level::__repr__ | ( | self | ) |
Definition at line 247 of file __init__.py.
00247 : 00248 val = cls.levels.get( s.upper() , None) 00249 assert val , "level %s is not recogized %s " % ( s, repr(cls.levels) ) return Level(val)
tuple DybDbi::__init__::Level::levels = dict( VERBOSE=1, DEBUG3=60, DEBUG2=70, DEBUG1=80, MONITOR=90, INFO=100, WARNING=110, ERROR=130, FATAL=140, NEVER=99999 ) [static] |
Definition at line 235 of file __init__.py.
tuple DybDbi::__init__::Level::From = classmethod(From) [static] |
Definition at line 246 of file __init__.py.
1.4.7