annotate lib/logsetup.py @ 1214:c1792115b1d3
new 'store' service for user inputs
Ignore-this: 7b14beca506dd7f1e38b5214aae1833a
darcs-hash:9a1fcc5c46b304442940cfd956bf8ac4e5f6007b
author |
drewp <drewp@bigasterisk.com> |
date |
Sat, 16 Mar 2019 18:22:57 -0700 |
parents |
e379b1b4fe8b |
children |
|
rev |
line source |
806
|
1 # todo: graylog, twisted web route to some channel
|
|
2
|
|
3 import logging
|
|
4 logging.basicConfig(format="%(created)f %(asctime)s %(name)s %(levelname)s %(message)s")
|
|
5 logging.getLogger('restkit.client').setLevel(logging.WARN)
|
|
6 log = logging.getLogger()
|
|
7 log.setLevel(logging.INFO)
|
1022
|
8
|
|
9 def enableTwistedLog():
|
|
10 from twisted.python import log as twlog
|
|
11 import sys
|
|
12 twlog.startLogging(sys.stdout)
|
|
13
|
|
14
|
|
15
|