From 01202aa7093d7a1bccb8d009aad29d1f8627360c Mon Sep 17 00:00:00 2001 From: Daniel Larimer Date: Wed, 16 Jul 2014 14:20:36 -0400 Subject: [PATCH] adding space to exception message --- src/exception.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exception.cpp b/src/exception.cpp index 186317c..8988cde 100644 --- a/src/exception.cpp +++ b/src/exception.cpp @@ -157,7 +157,7 @@ namespace fc string exception::to_string( log_level ll )const { fc::stringstream ss; - ss << what() << "(" << variant(my->_code).as_string() <<")\n"; + ss << what() << " (" << variant(my->_code).as_string() <<")\n"; for( auto itr = my->_elog.begin(); itr != my->_elog.end(); ++itr ) { ss << fc::format_string( itr->get_format(), itr->get_data() ) <<"\n";