spdlog/bench/spdlog-bench.cpp

20 lines
603 B
C++
Raw Normal View History

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