Advertisement
Guest User

whyyyy

a guest
Jun 19th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. PS W:\> python
  2. Python 3.7.3 (v3.7.3:ef4ec6ed12, Mar 25 2019, 21:26:53) [MSC v.1916 32 bit (Intel)] on win32
  3. Type "help", "copyright", "credits" or "license" for more information.
  4. >>> import logging
  5. >>> foo = logging.getLogger('foo')
  6. >>> foo.setLevel(logging.DEBUG)
  7. >>> foo.debug('bar')
  8. >>> foo.debug('bar')
  9. >>> logging.debug('baz')
  10. >>> foo.debug('bar')
  11. DEBUG:foo:bar
  12. >>>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement