From 1972b4d639310d32f4fe7d4a68c05d5d22a0ef64 Mon Sep 17 00:00:00 2001 From: Sven Nierlein Date: Thu, 22 Feb 2024 16:30:19 +0100 Subject: [PATCH] remove duplicate log entry there is no reason to have 2 entries in the debug log for the same execution path. And i always found this entry confusing. Signed-off-by: Sven Nierlein --- src/naemon/events.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/naemon/events.c b/src/naemon/events.c index f5441bdb..60c47351 100644 --- a/src/naemon/events.c +++ b/src/naemon/events.c @@ -343,10 +343,10 @@ static int event_poll_full(iobroker_set *iobs, long int timeout_ms) } else if (inputs > 0) { log_debug_info(DEBUGL_IPC, 2, "## %d descriptors had input\n", inputs); /* + * Event was cancelled by iobroker input: * Since we got input on one of the file descriptors, this wakeup wasn't * about a timed event, so start the main loop over. */ - log_debug_info(DEBUGL_EVENTS, 0, "Event was cancelled by iobroker input\n"); return 0; }