spdlog/bench/glog-bench.cpp

18 lines
303 B
C++
Raw Normal View History

2014-11-23 06:24:46 +08:00
#include "glog/logging.h"
int main(int, char* argv[])
{
2014-12-21 08:42:37 +08:00
int howmany = 1000000;
2014-11-23 06:24:46 +08:00
2014-11-23 07:12:35 +08:00
2014-12-21 08:42:37 +08:00
FLAGS_logtostderr = 0;
FLAGS_log_dir = "logs";
google::InitGoogleLogging(argv[0]);
for(int i = 0 ; i < howmany; ++i)
LOG(INFO) << "glog message # " << i << ": This is some text for your pleasure";
2014-11-23 06:24:46 +08:00
2014-12-21 08:42:37 +08:00
return 0;
2014-11-23 06:24:46 +08:00
}