spdlog/bench-comparison/spdlog-bench.cpp

18 lines
435 B
C++
Raw Normal View History

2014-11-03 17:47:16 -05:00
#include "spdlog/spdlog.h"
int main(int argc, char* argv[])
2014-11-03 17:47:16 -05:00
{
int howmany = 1000000;
2014-11-03 17:47:16 -05:00
namespace spd = spdlog;
///Create a file rotating logger with 5mb size max and 3 rotated files
auto logger = spd::rotating_logger_mt("file_logger", "logs/spd-sample", 10 *1024 * 1024 , 5);
logger->set_pattern("[%Y-%b-%d %T.%e]: %v");
for(int i = 0 ; i < howmany; ++i)
2014-11-03 17:47:16 -05:00
logger->info() << "spdlogger message #" << i;
return 0;
}