Remove some last traces of lowvsyslog that were missed; Add a SYSLOG emergency channel for handling assertion output more cleanly

This commit is contained in:
Gregory Nutt
2016-06-20 16:11:50 -06:00
parent d1a62f1d24
commit 505ca542e8
26 changed files with 177 additions and 72 deletions
+2 -2
View File
@@ -100,10 +100,10 @@ static int usbtrace_syslog(const char *fmt, ...)
va_list ap;
int ret;
/* Let lowvsyslog do the real work */
/* Let vsyslog do the real work */
va_start(ap, fmt);
ret = lowvsyslog(LOG_INFO, fmt, ap);
ret = vsyslog(LOG_INFO, fmt, ap);
va_end(ap);
return ret;
}