acimpoeru / google-glog

Automatically exported from code.google.com/p/google-glog
Other
0 stars 0 forks source link

Log files are partially written #205

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Call google::InitGoogleLogging("d_rv"); in a plugin used by a host 
application
2. Call LOG(INFO) << "0000";LOG(INFO) << "1111";
3.

What is the expected output? What do you see instead?
I expect to see both "0000" and "1111" being written to the log file, instead, 
I see only "0000". All subsequent LOG(INFO) are not written out.

What version of the product are you using? On what operating system?
using v0.3.3 on CentOS 6.3, gcc 4.4.7

Please provide any additional information below.
I noticed that if I were to use LOG(ERROR) the error log file contains all the 
messages.

Original issue reported on code.google.com by Yue.Nich...@gmail.com on 9 May 2014 at 12:45