spdlog/bench/spdlog-bench.cpp

21 lines
604 B
C++
Raw Normal View History

2015-11-29 00:24:20 +08:00
//
// Copyright(c) 2015 Gabi Melman.
// Distributed under the MIT License (http://opensource.org/licenses/MIT)
//
2014-11-04 06:47:16 +08:00
#include "spdlog/spdlog.h"
2014-11-08 02:51:35 +08:00
int main(int, char* [])
2014-11-04 06:47:16 +08:00
{
2014-12-21 08:47:04 +08:00
int howmany = 1000000;
namespace spd = spdlog;
///Create a file rotating logger with 5mb size max and 3 rotated files
auto logger = spdlog::create<spd::sinks::simple_file_sink_st>("file_logger", "logs/spd-bench-st.txt", false);
2014-11-04 06:47:16 +08:00
2014-12-21 08:47:04 +08:00
logger->set_pattern("[%Y-%b-%d %T.%e]: %v");
for(int i = 0 ; i < howmany; ++i)
2016-07-03 08:43:55 +08:00
logger->info("spdlog message #{} : This is some text for your pleasure", i);
2014-12-21 08:47:04 +08:00
return 0;
2014-11-04 06:47:16 +08:00
}