Issue #11331: fixed documentation in logging cookbook.
This commit is contained in:
parent
859c7fac78
commit
553de0ee7c
|
@ -630,8 +630,6 @@ script::
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL)
|
levels = (logging.DEBUG, logging.INFO, logging.WARNING, logging.ERROR, logging.CRITICAL)
|
||||||
a1 = logging.LoggerAdapter(logging.getLogger('a.b.c'),
|
|
||||||
{ 'ip' : '123.231.231.123', 'user' : 'sheila' })
|
|
||||||
logging.basicConfig(level=logging.DEBUG,
|
logging.basicConfig(level=logging.DEBUG,
|
||||||
format='%(asctime)-15s %(name)-5s %(levelname)-8s IP: %(ip)-15s User: %(user)-8s %(message)s')
|
format='%(asctime)-15s %(name)-5s %(levelname)-8s IP: %(ip)-15s User: %(user)-8s %(message)s')
|
||||||
a1 = logging.getLogger('a.b.c')
|
a1 = logging.getLogger('a.b.c')
|
||||||
|
|
Loading…
Reference in New Issue