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
+1 -1
View File
@@ -66,7 +66,7 @@ int _alert(const char *format, ...)
int ret;
va_start(ap, format);
ret = lowvsyslog(LOG_EMERG, format, ap);
ret = vsyslog(LOG_EMERG, format, ap);
va_end(ap);
return ret;