Ver código fonte

Flush stdout after trace messages (#2465)

This immediately shows log messages when stdout is not connected to a
tty.
pull/2467/head
Daniel Nagy 3 anos atrás
committed by GitHub
pai
commit
19f88241ec
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 4AEE18F83AFDEB23
1 arquivos alterados com 1 adições e 0 exclusões
  1. +1
    -0
      src/utils.c

+ 1
- 0
src/utils.c Ver arquivo

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

Carregando…
Cancelar
Salvar