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 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.