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

@@ -39,7 +39,7 @@ int main(int argc, char* [])
using namespace logging::trivial;
src::severity_logger_mt< severity_level > lg;
for(int i = 0 ; i < howmany; ++i)
BOOST_LOG_SEV(lg, info) << "Boost logger message #" << i;
BOOST_LOG_SEV(lg, info) << "boost message #" << i << ": This is some text for your pleasure";
return 0;
}