Clean up the remaining uses of print()

This commit is contained in:
Leo Vasanko
2025-08-18 10:49:40 -06:00
parent 6aef2e1208
commit 3edf595983
2 changed files with 4 additions and 4 deletions

View File

@@ -183,9 +183,9 @@ async def refresh_wwwroot():
for name in sorted(set(wwwold) - set(www)):
changes += f"Deleted /{name}\n"
if changes:
print(f"Updated wwwroot:\n{changes}", end="", flush=True)
logger.info(f"Updated wwwroot:\n{changes}", end="", flush=True)
except Exception as e:
print(f"Error loading wwwroot: {e!r}")
logger.error(f"Error loading wwwroot: {e!r}")
await asyncio.sleep(0.5)
except asyncio.CancelledError:
pass