spdlog/bench/easylogging-bench.cpp

23 lines
503 B
C++
Raw Normal View History

2015-11-28 18:24:20 +02:00
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
2014-12-20 18:57:01 +02:00
#include "easylogging++.h"
2016-05-05 10:19:32 +03:00
_INITIALIZE_EASYLOGGINGPP
2014-12-20 18:57:01 +02:00
int main(int, char* [])
{
2014-12-21 02:47:04 +02:00
int howmany = 1000000;
2014-12-21 02:42:37 +02:00
2014-12-21 02:47:04 +02:00
// Load configuration from file
el::Configurations conf("easyl.conf");
el::Loggers::reconfigureLogger("default", conf);
2014-12-21 02:42:37 +02:00
2014-12-21 02:47:04 +02: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 18:57:01 +02:00
}