Better format log message context

This commit is contained in:
SynaptiCAD User 2015-01-21 09:50:14 -05:00
parent f3065b367e
commit 859282305d

View file

@ -83,7 +83,9 @@ namespace fc
void log_context::append_context( const fc::string& s )
{
my->context += "->" + s;
if (!my->context.empty())
my->context += " -> ";
my->context += s;
}
log_context::~log_context(){}