You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
spdlog/bench/glog-bench.cpp

18 lines
327 B
C++

11 years ago
#include "glog/logging.h"
int main(int, char* argv[])
{
11 years ago
int howmany = 1000000;
11 years ago
11 years ago
11 years ago
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";
11 years ago
11 years ago
return 0;
11 years ago
}