commit 3c0492c044f717e7d074383453c43a79c2080102
Author: Scott Kostyshak <[email protected]>
Date:   Thu Jun 26 23:55:48 2025 +0200

    configure.py: print to STDOUT, not STDERR
---
 lib/configure.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/configure.py b/lib/configure.py
index d86aa863de..f0ca1ff0d0 100644
--- a/lib/configure.py
+++ b/lib/configure.py
@@ -16,7 +16,7 @@ logging.basicConfig(level = logging.DEBUG,
     filemode = 'w')
 #
 # Add a handler to log to console
-console = logging.StreamHandler()
+console = logging.StreamHandler(sys.stdout)
 console.setLevel(logging.INFO) # the console only print out general information
 formatter = logging.Formatter('%(message)s') # only print out the message 
itself
 console.setFormatter(formatter)
-- 
lyx-cvs mailing list
[email protected]
https://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to