Browse Source

Always log warnings and error messages.

nfactor-troky
Con Kolivas 13 years ago
parent
commit
0f351d8466
  1. 2
      util.c

2
util.c

@ -70,7 +70,7 @@ void applog(int prio, const char *fmt, ...) @@ -70,7 +70,7 @@ void applog(int prio, const char *fmt, ...)
#else
if (0) {}
#endif
else if (opt_log_output) {
else if (opt_log_output || prio == LOG_WARNING || prio == LOG_ERR) {
char *f;
int len;
struct timeval tv = { };

Loading…
Cancel
Save