increased width of file:line field in console appender

This commit is contained in:
Daniel Larimer 2013-08-06 12:35:21 -04:00
parent b6bf4bb389
commit 243679c658

View file

@ -73,7 +73,7 @@ namespace fc {
///////////////
std::stringstream line;
line << (m.get_context().get_timestamp().time_since_epoch().count() % (1000ll*1000ll*60ll*60))/1000 <<"ms ";
line << std::setw( 10 ) << std::left << m.get_context().get_thread_name().substr(0,9).c_str() <<" "<<std::setw(20)<< std::left <<file_line.str();
line << std::setw( 10 ) << std::left << m.get_context().get_thread_name().substr(0,9).c_str() <<" "<<std::setw(30)<< std::left <<file_line.str();
auto me = m.get_context().get_method();
// strip all leading scopes...