mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-24 00:29:58 -05:00
Changed verbosity level for Redis init & deinit
Redis init & deinit are basic (operational) information
This commit is contained in:
parent
36b38cea74
commit
2d33bba3c0
1 changed files with 2 additions and 2 deletions
|
|
@ -111,7 +111,7 @@ redis_init(struct module_env* env, struct cachedb_env* cachedb_env)
|
||||||
int i;
|
int i;
|
||||||
struct redis_moddata* moddata = NULL;
|
struct redis_moddata* moddata = NULL;
|
||||||
|
|
||||||
verbose(VERB_ALGO, "redis_init");
|
verbose(VERB_OPS, "Redis initialization");
|
||||||
|
|
||||||
moddata = calloc(1, sizeof(struct redis_moddata));
|
moddata = calloc(1, sizeof(struct redis_moddata));
|
||||||
if(!moddata) {
|
if(!moddata) {
|
||||||
|
|
@ -173,7 +173,7 @@ redis_deinit(struct module_env* env, struct cachedb_env* cachedb_env)
|
||||||
cachedb_env->backend_data;
|
cachedb_env->backend_data;
|
||||||
(void)env;
|
(void)env;
|
||||||
|
|
||||||
verbose(VERB_ALGO, "redis_deinit");
|
verbose(VERB_OPS, "Redis deinitialization");
|
||||||
|
|
||||||
if(!moddata)
|
if(!moddata)
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue