Skip to content

Commit

Permalink
logServer writes to stdout instead of stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
ggardner42 committed Mar 3, 2016
1 parent fe38561 commit 1f31cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion logServer.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def getLogger(fname=None):
fh.setFormatter(formatter)
logger.addHandler(fh)

ch = logging.StreamHandler()
ch = logging.StreamHandler(stream=sys.stdout)
ch.setFormatter(formatter)
logger.addHandler(ch)

Expand Down

0 comments on commit 1f31cf7

Please sign in to comment.