increased width of file:line field in console appender
This commit is contained in:
parent
b6bf4bb389
commit
243679c658
1 changed files with 1 additions and 1 deletions
|
|
@ -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...
|
||||
|
|
|
|||
Loading…
Reference in a new issue