This commit is contained in:
Lucas Armand
2025-11-17 10:44:13 -08:00
parent 9a4a39c71b
commit 191fbbfe18
+4
View File
@@ -418,6 +418,10 @@ class Backend:
async def tail_log():
log.debug(f"tailing file: {self.model_log_file}")
async with await open_file(self.model_log_file, mode="r", encoding='utf-8', errors='ignore') as f:
try:
f.seek(0)
except:
pass
while True:
line = await f.readline()
if line: