Browse Source

Flush stdout after trace messages (#2465)

This immediately shows log messages when stdout is not connected to a
tty.
Daniel Nagy 3 years ago
parent
commit
19f88241ec
1 changed files with 1 additions and 0 deletions
  1. 1 0
      src/utils.c

+ 1 - 0
src/utils.c

@@ -148,6 +148,7 @@ void TraceLog(int logType, const char *text, ...)
     strcat(buffer, text);
     strcat(buffer, "\n");
     vprintf(buffer, args);
+    fflush(stdout);
 #endif
 
     va_end(args);