From: Art Cancro Date: Wed, 3 Jun 2015 16:18:10 +0000 (-0400) Subject: Excluded c_min_workers from the temporary config logging because it was too noisy X-Git-Tag: Release_902~156^2~1^2~4^2~6 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=1587876ced7272533c1cd866789938978bc54318 Excluded c_min_workers from the temporary config logging because it was too noisy --- 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; }