Bump syslog messages up to LOG_NOTICE

This commit is contained in:
Ron Pedde 2005-01-11 03:52:24 +00:00
parent 7e5444c100
commit defcc6a614
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ void err_log(int level, unsigned int cat, char *fmt, ...)
if(!level) fprintf(stderr,"Aborting\n");
break;
case LOGDEST_SYSLOG:
syslog(LOG_INFO, "%s", errbuf);
syslog(LOG_NOTICE, "%s", errbuf);
if(!level) syslog(LOG_INFO, "Aborting\n");
break;
}