spdlog/bench/spdlog-bench.cpp

17 lines
483 B
C++
Raw Normal View History

2014-11-03 17:47:16 -05:00
#include "spdlog/spdlog.h"
2014-11-07 13:51:35 -05:00
int main(int, char* [])
2014-11-03 17:47:16 -05:00
{
2014-11-04 19:36:50 -05:00
int howmany = 1000000;
namespace spd = spdlog;
///Create a file rotating logger with 5mb size max and 3 rotated files
2014-11-23 19:15:17 -05:00
auto logger = spd::rotating_logger_st("file_logger", "logs/spd-sample", 10 *1024 * 1024 , 5);
2014-11-03 17:47:16 -05:00
2014-11-04 19:36:50 -05:00
logger->set_pattern("[%Y-%b-%d %T.%e]: %v");
for(int i = 0 ; i < howmany; ++i)
2014-11-22 18:41:38 -05:00
logger->info() << "spdlog message #" << i << ": This is some text for your pleasure";
2014-11-03 17:47:16 -05:00
return 0;
}