From c818308258ef11848f6dd9af827d3cb0fe3db016 Mon Sep 17 00:00:00 2001 From: Martin Beseda <martin.beseda@vsb.cz> Date: Sat, 14 Sep 2019 22:36:28 +0200 Subject: [PATCH] [FIX] Added missing linebreaks. --- src/message.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/message.h b/src/message.h index ea134969..9dccc6a6 100644 --- a/src/message.h +++ b/src/message.h @@ -8,10 +8,10 @@ #define COL_WIDTH 20 #define R_ALIGN std::setw(COL_WIDTH) << std::right -#define COUT_INFO(inp) std::cout << std::flush << std::fixed << std::setprecision(12) << "INFO: " << inp << std::flush +#define COUT_INFO(inp) std::cout << std::flush << std::fixed << std::setprecision(12) << "INFO: " << inp << std::endl << std::flush #ifdef L4N_DEBUG -#define COUT_DEBUG(inp) assert(std::cerr << std::flush << std::fixed << std::setprecision(12) << "DEBUG: " << inp << std::flush) +#define COUT_DEBUG(inp) assert(std::cerr << std::flush << std::fixed << std::setprecision(12) << "DEBUG: " << inp << std::endl << std::flush) #define WRITE_TO_OFS_DEBUG(ofs, msg) { if(ofs && ofs->is_open())\ *ofs << std::fixed << std::setprecision(12) << "DEBUG: " << msg;\ -- GitLab