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 am using a "/dev/null" like handle when my application is in quiet mode to hide the progress bar.
On unix, tty::move_cursor_up returns a string which is output to the handle.
On windows, tty::move_cursor_up print to the console and return an empty string whatever the handle is, making my trick to have a quiet mode totally failing.
I do not know if the windows code could be fixed easily. Otherwise what about introducing a quiet mode ?
The text was updated successfully, but these errors were encountered:
Hello,
I am using a "/dev/null" like handle when my application is in quiet mode to hide the progress bar.
On unix,
tty::move_cursor_up
returns a string which is output to the handle.On windows,
tty::move_cursor_up
print to the console and return an empty string whatever the handle is, making my trick to have a quiet mode totally failing.I do not know if the windows code could be fixed easily. Otherwise what about introducing a quiet mode ?
The text was updated successfully, but these errors were encountered: