From: Wilfried Goesgens Date: Thu, 1 Sep 2011 16:37:33 +0000 (+0000) Subject: Silence the very noisy 'Interrupted CtdlThreadSelect' X-Git-Tag: v8.11~990 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=b784ba9fe874f1de297b3e2f2691cfaf751db0b2 Silence the very noisy 'Interrupted CtdlThreadSelect' --- 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; }