From b784ba9fe874f1de297b3e2f2691cfaf751db0b2 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Thu, 1 Sep 2011 16:37:33 +0000 Subject: [PATCH] Silence the very noisy 'Interrupted CtdlThreadSelect' --- citadel/sysdep.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/citadel/sysdep.c b/citadel/sysdep.c index e9b7ad174..0078a161b 100644 --- a/citadel/sysdep.c +++ b/citadel/sysdep.c @@ -1324,7 +1324,9 @@ do_select: force_purge = 0; CtdlThreadStopAll(); continue; } else { +#if 0 CtdlLogPrintf(CTDL_DEBUG, "Interrupted CtdlThreadSelect.\n"); +#endif if (CtdlThreadCheckStop()) return(NULL); goto do_select; } @@ -1465,7 +1467,9 @@ void *select_on_master (void *arg) CtdlLogPrintf(CTDL_EMERG, "Exiting (%s)\n", strerror(errno)); CtdlThreadStopAll(); } else { +#if 0 CtdlLogPrintf(CTDL_DEBUG, "Interrupted CtdlThreadSelect.\n"); +#endif if (CtdlThreadCheckStop()) return(NULL); continue; } -- 2.30.2