Add newline to return statement logging

This commit is contained in:
Luke Usher 2016-11-26 10:04:47 +00:00
parent 7bc449faff
commit 053781afd9
1 changed files with 1 additions and 1 deletions

View File

@ -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)