spdlog/bench/glog-bench.cpp

20 lines
438 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-23 06:24:46 +08:00
#include "glog/logging.h"
2018-03-09 21:26:33 +08:00
int main(int, char *argv[])
2014-11-23 06:24:46 +08:00
{
2014-12-21 08:47:04 +08:00
int howmany = 1000000;
2014-11-23 06:24:46 +08:00
2014-12-21 08:47:04 +08:00
FLAGS_logtostderr = 0;
FLAGS_log_dir = "logs";
google::InitGoogleLogging(argv[0]);
2018-03-09 21:26:33 +08:00
for (int i = 0; i < howmany; ++i)
2014-12-21 08:47:04 +08:00
LOG(INFO) << "glog message # " << i << ": This is some text for your pleasure";
2014-11-23 06:24:46 +08:00
2014-12-21 08:47:04 +08:00
return 0;
2014-11-23 06:24:46 +08:00
}