Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
timtrueman committed Feb 13, 2010
0 parents commit a336f5b
Show file tree
Hide file tree
Showing 3 changed files with 455 additions and 0 deletions.
Empty file added README
Empty file.
34 changes: 34 additions & 0 deletions logging.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[loggers]
keys=root,main,shumai

[handlers]
keys=consoleHandler

[formatters]
keys=simpleFormatter

[logger_root]
level=DEBUG
handlers=consoleHandler

[logger_main]
level=DEBUG
handlers=consoleHandler
qualname=main
propagate=0

[logger_shumai]
level=WARNING
handlers=consoleHandler
qualname=shumai
propagate=0

[handler_consoleHandler]
class=StreamHandler
level=DEBUG
formatter=simpleFormatter
args=(sys.stdout,)

[formatter_simpleFormatter]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
datefmt=
Loading

0 comments on commit a336f5b

Please sign in to comment.