spdlog/bench/g2log-bench.cpp

17 lines
325 B
C++
Raw Normal View History

2014-11-23 19:44:45 -05:00
#include "g2logworker.h"
#include "g2log.h"
int main(int, char* argv[])
{
int howmany = 1000000;
2014-11-29 13:02:14 -05:00
g2LogWorker g2log(argv[0], "logs");
2014-11-23 19:44:45 -05:00
g2::initializeLogging(&g2log);
2014-11-29 13:02:14 -05:00
2014-11-23 19:44:45 -05:00
for(int i = 0 ; i < howmany; ++i)
LOG(INFO) << "g2log message # " << i << ": This is some text for your pleasure";
return 0;
}