Browse Source

engine: common: fix message formating

pull/2/head
tyabus 5 years ago committed by Alibek Omarov
parent
commit
934dffd273
  1. 6
      engine/common/sys_con.c

6
engine/common/sys_con.c

@ -225,15 +225,15 @@ void Sys_PrintLog( const char *pMsg ) @@ -225,15 +225,15 @@ void Sys_PrintLog( const char *pMsg )
#endif
#endif
// save last char to detect when line was not ended
lastchar = pMsg[strlen(pMsg)-1];
if( !s_ld.logfile )
return;
if( !lastchar || lastchar == '\n')
strftime( logtime, sizeof( logtime ), "[%Y:%m:%d|%H:%M:%S]", crt_tm ); //full time
// save last char to detect when line was not ended
lastchar = pMsg[strlen(pMsg)-1];
fprintf( s_ld.logfile, "%s %s", logtime, pMsg );
fflush( s_ld.logfile );
}

Loading…
Cancel
Save