bench with bigger log line

This commit is contained in:
gabime
2014-11-23 01:41:38 +02:00
parent 3ccef96980
commit f5caa00db7
6 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ int main(int, char* argv[])
FLAGS_log_dir = "logs";
google::InitGoogleLogging(argv[0]);
for(int i = 0 ; i < howmany; ++i)
LOG(INFO) << "glog message # " << i;
LOG(INFO) << "glog message # " << i << ": This is some text for your pleasure";
return 0;
}