Remove lowsyslog(). The new syslog() includes all of the functionality of lowsyslog(). No longer any need for two interfaces.

This commit is contained in:
Gregory Nutt
2016-06-20 08:57:08 -06:00
parent 5002e27e84
commit 2b445ddccc
43 changed files with 243 additions and 575 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ void usbtrace(uint16_t event, uint16_t value)
}
}
#else
/* Just print the data using lowsyslog */
/* Just print the data using syslog */
usbtrace_trprintf(usbtrace_syslog, event, value);
#endif
+3 -3
View File
@@ -200,13 +200,13 @@ static void usbmsc_dumpdata(const char *msg, const uint8_t *buf, int buflen)
{
int i;
lowsyslog(LOG_DEBUG, "%s:", msg);
syslog(LOG_DEBUG, "%s:", msg);
for (i = 0; i < buflen; i++)
{
lowsyslog(LOG_DEBUG, " %02x", buf[i]);
syslog(LOG_DEBUG, " %02x", buf[i]);
}
lowsyslog(LOG_DEBUG, "\n");
syslog(LOG_DEBUG, "\n");
}
#endif