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
Is it possible to set the logs to always flush when a new line (similar to Python logging behavior)? print on every logging statement. Without manually calling flush each time.
Also when debugging, it takes some time the logs to appear, so it is good to have it enabled then, since cout and the logs are not ordered.
The text was updated successfully, but these errors were encountered:
it is not possible at the moment but i am adding it as a new feature for the next release.
Since i do not want to add another if statement on the hot path and that is meant to be mainly for debugging purposes i am adding it as a preprocessor flag that has to be defined QUILL_IMMEDIATE_FLUSH (ff4b208)
This means that to enable it you will have to recompile your project with the flag
Is it possible to set the logs to always flush when a new line (similar to Python logging behavior)? print on every logging statement. Without manually calling flush each time.
Also when debugging, it takes some time the logs to appear, so it is good to have it enabled then, since cout and the logs are not ordered.
The text was updated successfully, but these errors were encountered: