Skip to content

Commit

Permalink
Merge #879: Change log output to STDOUT from STDERR
Browse files Browse the repository at this point in the history
60622ff Change log output to STDOUT from STDERR (Adam Gibson)
  • Loading branch information
AdamISZ committed May 24, 2021
2 parents 46fe744 + 60622ff commit e5e4a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jmbase/jmbase/support.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class JMColorizer(GenericColorizer):
class JoinMarketStreamHandler(ColorizingStreamHandler):

def __init__(self):
super().__init__(colorizer=jm_colorizer)
super().__init__(colorizer=jm_colorizer, stream=sys.stdout)

def emit(self, record):
if joinmarket_alert[0]:
Expand Down

0 comments on commit e5e4a62

Please sign in to comment.