Drop unnecessary (and buggy) debug logs
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
This commit is contained in:
parent
849aeb18c4
commit
1544cddd5a
@ -2394,7 +2394,6 @@ static int cfopt(char **ptr, const char *opt)
|
|||||||
|
|
||||||
len = strlen(opt);
|
len = strlen(opt);
|
||||||
if (!strncasecmp(*ptr, opt, len)) {
|
if (!strncasecmp(*ptr, opt, len)) {
|
||||||
logit("Found %s\n", opt);
|
|
||||||
*ptr += len;
|
*ptr += len;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
@ -2687,11 +2686,8 @@ static struct filed *cfline(char *line)
|
|||||||
|
|
||||||
default:
|
default:
|
||||||
/* All other targets default to RFC3164 */
|
/* All other targets default to RFC3164 */
|
||||||
if (f->f_flags & (RFC3164 | RFC5424)) {
|
if (f->f_flags & (RFC3164 | RFC5424))
|
||||||
logit("%s has %s format logging enabled\n",
|
|
||||||
(f->f_flags & RFC3164) ? "RFC3164" : "RFC5424");
|
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
|
|
||||||
f->f_flags = RFC3164;
|
f->f_flags = RFC3164;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user