spdlog vs boost benchmarks

This commit is contained in:
gabime
2014-11-04 00:47:16 +02:00
parent 65c79d58e3
commit e83bf08d74
6 changed files with 217 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#include "spdlog/spdlog.h"
int main(int, char*[])
{
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 < 1000000; ++i)
logger->info() << "spdlogger message #" << i;
return 0;
}