diff --git a/src/log/log_message.cpp b/src/log/log_message.cpp index 3aec6f4..09b6815 100644 --- a/src/log/log_message.cpp +++ b/src/log/log_message.cpp @@ -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(){}