Merge branch '3.0.1' into developer

This commit is contained in:
Dhanya Maliakal
2017-12-14 14:29:16 +01:00
6 changed files with 10 additions and 10 deletions

View File

@ -210,7 +210,7 @@ inline void Output2FILE::Output(const std::string& msg, TLogLevel level)
switch(level){
case logERROR: cprintf(RED BOLD,"%s",msg.c_str()); break;
case logWARNING: cprintf(YELLOW BOLD,"%s",msg.c_str()); break;
case logINFO: cprintf(DARKGRAY,"%s",msg.c_str()); break;
case logINFO: cprintf(RESET,"%s",msg.c_str()); break;
default: fprintf(pStream,"%s",msg.c_str()); out = false; break;
}
fflush(out ? stdout : pStream);