spdlog/bench/spdlog-bench.cpp

17 lines
499 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-12-20 19:47:04 -05: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-03 17:47:16 -05:00
2014-12-20 19:47:04 -05:00
logger->set_pattern("[%Y-%b-%d %T.%e]: %v");
for(int i = 0 ; i < howmany; ++i)
logger->info() << "spdlog message #" << i << ": This is some text for your pleasure";
return 0;
2014-11-03 17:47:16 -05:00
}