Explorar el Código

Flush stdout after trace messages (#2465)

This immediately shows log messages when stdout is not connected to a
tty.
pull/2467/head
Daniel Nagy hace 3 años
cometido por GitHub
padre
commit
19f88241ec
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. +1
    -0
      src/utils.c

+ 1
- 0
src/utils.c Ver fichero

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

Cargando…
Cancelar
Guardar