From 1587876ced7272533c1cd866789938978bc54318 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 3 Jun 2015 12:18:10 -0400 Subject: [PATCH] Excluded c_min_workers from the temporary config logging because it was too noisy --- citadel/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/config.c b/citadel/config.c index 869b1976f..9b5b96d26 100644 --- a/citadel/config.c +++ b/citadel/config.c @@ -415,7 +415,7 @@ char *CtdlGetConfigStr(char *key) /* First look in memory */ if (GetHash(ctdlconfig, key, key_len, (void *)&value)) { - syslog(LOG_DEBUG, "\033[32mGET CONFIG: '%s' = '%s'\033[0m", key, value); + if (strcmp(key, "c_min_workers")) syslog(LOG_DEBUG, "\033[32mGET CONFIG: '%s' = '%s'\033[0m", key, value); return value; } -- 2.30.2