Excluded c_min_workers from the temporary config logging because it was too noisy
authorArt Cancro <ajc@uncensored.citadel.org>
Wed, 3 Jun 2015 16:18:10 +0000 (12:18 -0400)
committerArt Cancro <ajc@uncensored.citadel.org>
Wed, 3 Jun 2015 16:18:10 +0000 (12:18 -0400)
citadel/config.c

index 869b1976f636cf60bba10773b500f1d0100d7694..9b5b96d2607b987996bf89f9ed86af7e2582310b 100644 (file)
@@ -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;
        }