Browse Source

Print INFO to stderr always

rexim 4 years ago
parent
commit
7e091ceaf5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      nobuild.h

+ 1 - 1
nobuild.h

@@ -1078,7 +1078,7 @@ void INFO(Cstr fmt, ...)
 {
     va_list args;
     va_start(args, fmt);
-    VLOG(stdout, "INFO", fmt, args);
+    VLOG(stderr, "INFO", fmt, args);
     va_end(args);
 }