search for: syslog_level_notice

Displaying 1 result from an estimated 1 matches for "syslog_level_notice".

2001 Jul 05
1
OpenSSH Logging Madness
Feature request: - Please add a new LogLevel corresponding to the LOG_NOTICE syslog level. - Then modify OpenSSH to log to LOG_NOTICE only these events: - login failures - login successes Specifically, please: - add a new element to the LogLevel enum, say, 'SYSLOG_LEVEL_NOTICE', between 'SYSLOG_LEVEL_INFO' and 'SYSLOG_LEVEL_ERROR', in log.h - add a new logging function to log.c called notice(), much like log(), verbose() and friends, but logging to SYSLOG_LEVEL_NOTICE. - modify log.c:do_log() to map SYSLOG_LEVEL_NOTICE to LOG_NOTICE. - mod...