]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Changed verbosity level for Redis init & deinit
authormibere <mibere@users.noreply.github.com>
Sat, 23 Nov 2019 23:03:38 +0000 (00:03 +0100)
committerGeorge Thessalonikefs <george@nlnetlabs.nl>
Fri, 21 Jul 2023 12:39:34 +0000 (14:39 +0200)
Redis init & deinit are basic (operational) information

cachedb/redis.c

index f7b2fa53266f803ada17a35be660d1b18a7ce842..2f8806c102eb8ab7b04e0ba785ce26d292523bd4 100644 (file)
@@ -111,7 +111,7 @@ redis_init(struct module_env* env, struct cachedb_env* cachedb_env)
        int i;
        struct redis_moddata* moddata = NULL;
 
-       verbose(VERB_ALGO, "redis_init");
+       verbose(VERB_OPS, "Redis initialization");
 
        moddata = calloc(1, sizeof(struct redis_moddata));
        if(!moddata) {
@@ -173,7 +173,7 @@ redis_deinit(struct module_env* env, struct cachedb_env* cachedb_env)
                cachedb_env->backend_data;
        (void)env;
 
-       verbose(VERB_ALGO, "redis_deinit");
+       verbose(VERB_OPS, "Redis deinitialization");
 
        if(!moddata)
                return;