- Merge #118 from mibere: Changed verbosity level for Redis init &

deinit.
This commit is contained in:
George Thessalonikefs 2023-07-21 15:00:24 +02:00
commit 04053d39a0
2 changed files with 5 additions and 2 deletions

View File

@ -97,6 +97,7 @@ redis_connect(const struct redis_moddata* moddata)
}
freeReplyObject(rep);
}
verbose(VERB_OPS, "Connection to Redis established");
return ctx;
fail:
@ -111,7 +112,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 +174,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;

View File

@ -2,6 +2,8 @@
- Merge #857 from eaglegai: fix potential memory leaks when errors
happen.
- For #857: fix mixed declarations and code.
- Merge #118 from mibere: Changed verbosity level for Redis init &
deinit.
20 July 2023: George
- Merge #909 from headshog: Numeric truncation when parsing TYPEXX and