From 053781afd934b1d58df62f93109bb513ed0ccd23 Mon Sep 17 00:00:00 2001 From: Luke Usher Date: Sat, 26 Nov 2016 10:04:47 +0000 Subject: [PATCH] Add newline to return statement logging --- src/Common/Logging.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/Logging.h b/src/Common/Logging.h index fea003e26..b15f6cadf 100644 --- a/src/Common/Logging.h +++ b/src/Common/Logging.h @@ -95,7 +95,7 @@ extern thread_local std::string _logPrefix; // LOG_FUNC_RESULT logs the function return result #define LOG_FUNC_RESULT(r) \ - std::cout << _logPrefix << " returns " << r; + std::cout << _logPrefix << " returns " << r << "\n"; #else #define LOG_FUNC_BEGIN #define LOG_FUNC_ARG(arg)