diff --git a/alib2common/src/exception/CommonException.cpp b/alib2common/src/exception/CommonException.cpp index 7e59431d4836a65a9cabed9bbd114fe7114fb08f..fe6d86a068fd027189dde4cd1509b4f12976a9a2 100644 --- a/alib2common/src/exception/CommonException.cpp +++ b/alib2common/src/exception/CommonException.cpp @@ -51,7 +51,7 @@ const std::string & CommonException::getCommand ( ) const { } std::ostream & operator << ( std::ostream & os, const CommonException & data ) { - return os << data.what ( ) << data.getBacktrace ( ) << data.getCommand ( ); + return os << data.what ( ) << std::endl << data.getBacktrace ( ) << std::endl << data.getCommand ( ); } CommonException::operator std::string ( ) const {