bench with bigger log line

This commit is contained in:
gabime
2014-11-23 01:41:38 +02:00
parent 3ccef96980
commit f5caa00db7
6 changed files with 6 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ int main(int, char* [])
logger->set_pattern("[%Y-%b-%d %T.%e]: %v");
for(int i = 0 ; i < howmany; ++i)
logger->info() << "spdlogger message #" << i;
logger->info() << "spdlog message #" << i << ": This is some text for your pleasure";
return 0;
}