summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etc/syslog.conf2
-rw-r--r--sbin/devd/devd.cc4
2 files changed, 3 insertions, 3 deletions
diff --git a/etc/syslog.conf b/etc/syslog.conf
index 702bd66..e65db53 100644
--- a/etc/syslog.conf
+++ b/etc/syslog.conf
@@ -30,7 +30,7 @@ cron.* /var/log/cron
# news.notice /var/log/news/news.notice
# Uncomment this if you wish to see messages produced by devd
# !devd
-# *.>=info /var/log/devd.log
+# *.>=notice /var/log/devd.log
!ppp
*.* /var/log/ppp.log
!*
diff --git a/sbin/devd/devd.cc b/sbin/devd/devd.cc
index b64c459..2bb14f1 100644
--- a/sbin/devd/devd.cc
+++ b/sbin/devd/devd.cc
@@ -772,7 +772,7 @@ process_event(char *buffer)
char *sp;
sp = buffer + 1;
- devdlog(LOG_DEBUG, "Processing event '%s'\n", buffer);
+ devdlog(LOG_INFO, "Processing event '%s'\n", buffer);
type = *buffer++;
cfg.push_var_table();
// No match doesn't have a device, and the format is a little
@@ -989,7 +989,7 @@ event_loop(void)
}
rv = select(max_fd, &fds, NULL, NULL, &tv);
if (got_siginfo) {
- devdlog(LOG_INFO, "Events received so far=%u\n",
+ devdlog(LOG_NOTICE, "Events received so far=%u\n",
total_events);
got_siginfo = 0;
}
OpenPOWER on IntegriCloud