mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-20 23:00:56 -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;
|
||||
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue