fixed a bug in configure_logging that made adding more than one logger impossible

This commit is contained in:
valzav 2014-05-07 20:58:54 -07:00
parent 687eaa98f2
commit 102e0c4ab8

View file

@ -47,8 +47,8 @@ namespace fc {
auto ap = appender::get( *a );
if( ap ) { lgr.add_appender(ap); }
}
return reg_console_appender || reg_file_appender;
}
return reg_console_appender || reg_file_appender;
} catch ( exception& e )
{
fc::cerr<<e.to_detail_string()<<"\n";