spdlog/bench/glog-bench.cpp

35 lines
870 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-22 17:24:46 -05:00
#include <chrono>
#include <iostream>
2014-11-22 17:24:46 -05:00
#include "glog/logging.h"
2018-03-09 08:26:33 -05:00
int main(int, char *argv[])
2014-11-22 17:24:46 -05:00
{
using namespace std::chrono;
using clock = steady_clock;
2014-12-20 19:47:04 -05:00
int howmany = 1000000;
2014-11-22 17:24:46 -05:00
2014-12-20 19:47:04 -05:00
FLAGS_logtostderr = 0;
FLAGS_log_dir = "logs";
google::InitGoogleLogging(argv[0]);
auto start = clock::now();
2018-03-09 08:26:33 -05:00
for (int i = 0; i < howmany; ++i)
LOG(INFO) << "glog message #" << i << ": This is some text for your pleasure";
duration<float> delta = clock::now() - start;
float deltaf = delta.count();
auto rate = howmany / deltaf;
std::cout << "Total: " << howmany << std::endl;
std::cout << "Delta = " << deltaf << " seconds" << std::endl;
std::cout << "Rate = " << rate << "/sec" << std::endl;
2014-11-22 17:24:46 -05:00
2014-12-20 19:47:04 -05:00
return 0;
2014-11-22 17:24:46 -05:00
}