You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I run Fooocus on another Windows machine with --listen option so I can use it remotely and I set it to automatically launch on startup in scheduler task. It works just great except I can't figure out how to capture console output to some log file so if it crashes or something weird happens it can be reviewed.
Usual redirect like command > file.log results in empty file.
It would be great to have an optional argument like --log file.log which would then write all console messages to it so it could be viewed remotely for diagnostics.
The text was updated successfully, but these errors were encountered:
@SpcCw The secret to make it work is to either flush Python buffer or not use any. -u does the trick here to disable the buffer altogether: .\python_embeded\python.exe -u -s Fooocus\entry_with_update.py
I run Fooocus on another Windows machine with
--listen
option so I can use it remotely and I set it to automatically launch on startup in scheduler task. It works just great except I can't figure out how to capture console output to some log file so if it crashes or something weird happens it can be reviewed.Usual redirect like
command > file.log
results in empty file.It would be great to have an optional argument like
--log file.log
which would then write all console messages to it so it could be viewed remotely for diagnostics.The text was updated successfully, but these errors were encountered: