From 53e05c6413d05f4724d88f028d52de5907005cfa Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Thu, 28 Jul 2011 19:55:54 +1000 Subject: [PATCH] Log to the output file at any time with warnings and errors, instead of just when verbose mode is on. --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index d8448b99..957a08ba 100644 --- a/util.c +++ b/util.c @@ -124,7 +124,7 @@ void vapplog(int prio, const char *fmt, va_list ap) tm.tm_sec, fmt); /* Only output to stderr if it's not going to the screen as well */ - if (opt_log_output && !isatty(fileno((FILE *)stderr))) { + if (!isatty(fileno((FILE *)stderr))) { va_list apc; va_copy(apc, ap);