Update everything under apps/ to use the corrected syslog interfaces

This commit is contained in:
Gregory Nutt 2014-10-08 11:34:22 -06:00
parent 8db42f5b54
commit 0cd7683711
1 changed files with 2 additions and 2 deletions

View File

@ -104,11 +104,11 @@
#ifdef CONFIG_DEBUG
# define dbg(format, ...) \
syslog(LOG_DEBUG, EXTRA_FMT format EXTRA_ARG, ##__VA_ARGS__)
syslog(LOG_ERR, EXTRA_FMT format EXTRA_ARG, ##__VA_ARGS__)
# ifdef CONFIG_ARCH_LOWPUTC
# define lldbg(format, ...) \
lowsyslog(LOG_DEBUG, EXTRA_FMT format EXTRA_ARG, ##__VA_ARGS__)
lowsyslog(LOG_ERR, EXTRA_FMT format EXTRA_ARG, ##__VA_ARGS__)
# else
# define lldbg(x...)
# endif