aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstat/stat_config.c
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2015-08-29 13:16:52 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2015-08-29 13:16:52 +0100
commit119e4424924fc8a047e26cc01031065836109ce1 (patch)
treee8beb73f99f7a68e46170b04e631123ef4156842 /src/libstat/stat_config.c
parentc34210bf492cb7621da2b1c287799aa35b37515c (diff)
downloadrspamd-119e4424924fc8a047e26cc01031065836109ce1.tar.gz
rspamd-119e4424924fc8a047e26cc01031065836109ce1.zip
More logging updates.
Diffstat (limited to 'src/libstat/stat_config.c')
-rw-r--r--src/libstat/stat_config.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libstat/stat_config.c b/src/libstat/stat_config.c
index 9e65b68a5..00baaa059 100644
--- a/src/libstat/stat_config.c
+++ b/src/libstat/stat_config.c
@@ -106,17 +106,18 @@ rspamd_stat_init (struct rspamd_config *cfg)
stat_ctx->tokenizers_count = G_N_ELEMENTS (stat_tokenizers);
stat_ctx->caches = stat_caches;
stat_ctx->caches_count = G_N_ELEMENTS (stat_caches);
+ stat_ctx->cfg = cfg;
/* Init backends */
for (i = 0; i < stat_ctx->backends_count; i ++) {
stat_ctx->backends[i].ctx = stat_ctx->backends[i].init (stat_ctx, cfg);
- msg_debug ("added backend %s", stat_ctx->backends[i].name);
+ msg_debug_config ("added backend %s", stat_ctx->backends[i].name);
}
/* Init caches */
for (i = 0; i < stat_ctx->caches_count; i ++) {
stat_ctx->caches[i].ctx = stat_ctx->caches[i].init (stat_ctx, cfg);
- msg_debug ("added cache %s", stat_ctx->caches[i].name);
+ msg_debug_config ("added cache %s", stat_ctx->caches[i].name);
}
}
@@ -124,13 +125,14 @@ void
rspamd_stat_close (void)
{
guint i;
+ struct rspamd_config *cfg = stat_ctx->cfg;
g_assert (stat_ctx != NULL);
for (i = 0; i < stat_ctx->backends_count; i ++) {
if (stat_ctx->backends[i].close != NULL) {
stat_ctx->backends[i].close (stat_ctx->backends[i].ctx);
- msg_debug ("closed backend %s", stat_ctx->backends[i].name);
+ msg_debug_config ("closed backend %s", stat_ctx->backends[i].name);
}
}
}