From 792a81ad030aca73e8188506c592d9d4f1a04f7b Mon Sep 17 00:00:00 2001 From: jeffser Date: Sun, 13 Oct 2024 09:57:52 -0600 Subject: [PATCH] Restore Ollama logging --- src/connection_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/connection_handler.py b/src/connection_handler.py index 1b2c640..101ef84 100644 --- a/src/connection_handler.py +++ b/src/connection_handler.py @@ -16,7 +16,7 @@ def log_output(pipe): with pipe: try: for line in iter(pipe.readline, ''): - #print(line, end='') + print(line, end='') f.write(line) f.flush() except: