bruce (owner)

Revisions

  • a5a4f8 Sat Jan 24 20:51:13 -0800 2009
gist: 51691 Download_button fork
public
Public Clone URL: git://gist.github.com/51691.git
Embed All Files: show embed
Python #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
>>> import logging
>>> f = logging.getLogger('foo')
>>> b = logging.getLogger('bar')
>>> b.addHandler(f)
 
>>> f.setLevel(logging.DEBUG)
>>> b.setLevel(logging.DEBUG)
>>> ch = logging.StreamHandler()
>>> f.addHandler(ch)
 
>>> b.warn("This is from the child logger")
This is from the child logger