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"
|
|
|
|
|
|
|
|
|
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)
|
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
|
|
|
}
|