spdlog/bench/easylogging-bench.cpp

17 lines
387 B
C++
Raw Normal View History

2014-12-20 11:57:01 -05:00
#include "easylogging++.h"
_INITIALIZE_EASYLOGGINGPP
int main(int, char* [])
{
2014-12-20 19:47:04 -05:00
int howmany = 1000000;
2014-12-20 19:42:37 -05:00
2014-12-20 19:47:04 -05:00
// Load configuration from file
el::Configurations conf("easyl.conf");
el::Loggers::reconfigureLogger("default", conf);
2014-12-20 19:42:37 -05:00
2014-12-20 19:47:04 -05:00
for(int i = 0 ; i < howmany; ++i)
LOG(INFO) << "easylog message #" << i << ": This is some text for your pleasure";
return 0;
2014-12-20 11:57:01 -05:00
}