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
because tee redirects stdout to a file, the stream thinks its output is not displayed on a terminal anymore, which changes its line buffering from linebuffering to EOF (I think). This defeats the purpose of using tee to have a live updated logger output in a file.
Putting stdbuf -oL -eL resolves this issue, because it forces stdout and stderr to use linebuffering again, but this needs to be done by the user. Maybe I can find a way to include this automatically in the start command.
The text was updated successfully, but these errors were encountered:
because tee redirects stdout to a file, the stream thinks its output is not displayed on a terminal anymore, which changes its line buffering from linebuffering to EOF (I think). This defeats the purpose of using tee to have a live updated logger output in a file.
Putting
stdbuf -oL -eL
resolves this issue, because it forces stdout and stderr to use linebuffering again, but this needs to be done by the user. Maybe I can find a way to include this automatically in the start command.The text was updated successfully, but these errors were encountered: