mirror of
https://github.com/gabime/spdlog.git
synced 2025-09-29 01:29:35 +08:00
g2log benchmarks
This commit is contained in:
16
bench/g2log-bench.cpp
Normal file
16
bench/g2log-bench.cpp
Normal file
@@ -0,0 +1,16 @@
|
||||
#include "g2logworker.h"
|
||||
#include "g2log.h"
|
||||
|
||||
|
||||
int main(int, char* argv[])
|
||||
{
|
||||
int howmany = 1000000;
|
||||
|
||||
g2LogWorker g2log(argv[0], "logs");
|
||||
g2::initializeLogging(&g2log);
|
||||
|
||||
for(int i = 0 ; i < howmany; ++i)
|
||||
LOG(INFO) << "g2log message # " << i << ": This is some text for your pleasure";
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user