Displaying 1 result from an estimated 1 matches for "syslog_level_".
Did you mean:
syslog_level
2001 Jan 05
3
subject: ssh non-intuitive logging setting. (priority names)
...es defined in
ssh.h.
(You can see from the snippet from log.c that
DEBUG and DEBUG1 have the same effect by the way.)
log.c:
static struct {
const char *name;
LogLevel val;
} log_levels[] =
{
{ "QUIET", SYSLOG_LEVEL_QUIET },
{ "FATAL", SYSLOG_LEVEL_FATAL },
{ "ERROR", SYSLOG_LEVEL_ERROR },
{ "INFO", SYSLOG_LEVEL_INFO },
{ "VERBOSE", SYSLOG_LEVEL_VERBOSE },
{ "DEBUG"...