Restore Ollama logging

This commit is contained in:
jeffser 2024-10-13 09:57:52 -06:00
parent 2ea0ff6870
commit 792a81ad03

View File

@ -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: