From 2fe1e017fdd5b117d4b710d2c279d6677bcd3333 Mon Sep 17 00:00:00 2001 From: pictuga Date: Tue, 25 Jan 2022 22:42:18 +0100 Subject: [PATCH] log to stderr --- morss/morss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morss/morss.py b/morss/morss.py index a75d8dc..77d80e7 100644 --- a/morss/morss.py +++ b/morss/morss.py @@ -59,7 +59,7 @@ def log(txt): else: # when using internal server or cli - print(repr(txt)) + print(repr(txt), file=sys.stderr) def len_html(txt):