log to stderr

This commit is contained in:
v 2018-03-29 00:24:56 +02:00
parent 17fd18b6c7
commit 9693d0dcd0
2 changed files with 2 additions and 4 deletions

View file

@ -9,9 +9,8 @@ import time
if __name__ == '__main__': if __name__ == '__main__':
logpath = config['logging']['logpath']
logger = logging.getLogger() logger = logging.getLogger()
fh = logging.FileHandler(logpath) fh = logging.StreamHandler()
fh.setLevel(logging.DEBUG) fh.setLevel(logging.DEBUG)
logger.addHandler(fh) logger.addHandler(fh)

View file

@ -151,9 +151,8 @@ def login_mastodon(user):
return dict(error='Login to Mastodon failed.') return dict(error='Login to Mastodon failed.')
logpath = config['logging']['logpath']
logger = logging.getLogger() logger = logging.getLogger()
fh = logging.FileHandler(logpath) fh = logging.StreamHandler()
fh.setLevel(logging.DEBUG) fh.setLevel(logging.DEBUG)
logger.addHandler(fh) logger.addHandler(fh)