We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following configuration does not seem to flush logs immediately (logs are buffered and flushed periodically):
FLAGS_logtostdout = true; FLAGS_logbuflevel = -1;
However, the following does:
FLAGS_logtostderr = true; FLAGS_logbuflevel = -1;
Both flags should have identical behavior.
The text was updated successfully, but these errors were encountered:
@kishorenc I would like to take a loo and try to fix it if no one is on it now.
Sorry, something went wrong.
Rollback glog stdout/stderrr separation.
6a9d5ef
This does not respect buffer levels yet: google/glog#943
@kishorenc I guess it should cause by the stdout has the buffered but stderr is not.
No branches or pull requests
The following configuration does not seem to flush logs immediately (logs are buffered and flushed periodically):
However, the following does:
Both flags should have identical behavior.
The text was updated successfully, but these errors were encountered: