X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fsyslog.c;h=1a70fd00e2ccde849b8492cc1ba27828939afe65;hb=84c380561c5b378448987bfde8df26e07bac6d8a;hp=4f5d0c4a2b84c6ebf20349c7247bdc9b26456f44;hpb=d76d25155399943bc9d317c6fb6d1981ca6e9b00;p=collectd.git diff --git a/src/syslog.c b/src/syslog.c index 4f5d0c4a..1a70fd00 100644 --- a/src/syslog.c +++ b/src/syslog.c @@ -48,7 +48,11 @@ static int sl_config (const char *key, const char *value) { log_level = parse_log_severity (value); if (log_level < 0) + { + log_level = LOG_INFO; + ERROR ("syslog: invalid loglevel [%s] defauling to 'info'", value); return (1); + } } else if (strcasecmp (key, "NotifyLevel") == 0) {