diff options
author | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2001-08-25 15:35:10 +0000 |
---|---|---|
committer | Camiel Dobbelaar <camield@cvs.openbsd.org> | 2001-08-25 15:35:10 +0000 |
commit | 1a3fe7fef9904b0a20e5798d2a3f7ef6a9aeaf8d (patch) | |
tree | 76299a650c026f1d9ce2b6ea33a2a5d3d24f9dd0 | |
parent | 186d6c21174c9b1e1802371a5eca0c7254ecace1 (diff) |
Lower syslog priority from NOTICE to INFO to avoid
logging ending up in daemon _and_ messages.
ok millert@, solar
-rw-r--r-- | usr.sbin/popa3d/params.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/popa3d/params.h b/usr.sbin/popa3d/params.h index 5e06135d80b..717a3aa77b8 100644 --- a/usr.sbin/popa3d/params.h +++ b/usr.sbin/popa3d/params.h @@ -1,4 +1,4 @@ -/* $OpenBSD: params.h,v 1.3 2001/08/21 20:20:06 camield Exp $ */ +/* $OpenBSD: params.h,v 1.4 2001/08/25 15:35:09 camield Exp $ */ /* * Global POP daemon parameters. @@ -151,7 +151,7 @@ #define SYSLOG_IDENT "popa3d" #define SYSLOG_OPTIONS LOG_PID #define SYSLOG_FACILITY LOG_DAEMON -#define SYSLOG_PRIORITY LOG_NOTICE +#define SYSLOG_PRIORITY LOG_INFO /* * There's probably no reason to touch anything below this comment. |