From cddbd852602fce81486e7c71cac17f544e2c2071 Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Wed, 28 Oct 2020 10:35:42 +0000 Subject: [PATCH] [Minor] Add more logging in map reread reason --- src/libserver/maps/map.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libserver/maps/map.c b/src/libserver/maps/map.c index 86ecc5d95f..079ca1cc96 100644 --- a/src/libserver/maps/map.c +++ b/src/libserver/maps/map.c @@ -1680,6 +1680,11 @@ rspamd_map_common_http_callback (struct rspamd_map *map, /* Read cached data */ if (check) { if (data->last_modified < data->cache->last_modified) { + msg_info_map ("need to reread cached map triggered by %s " + "(%d our modify time, %d cached modify time)", + bk->uri, + (int)data->last_modified, + (int)data->cache->last_modified); periodic->need_modify = TRUE; /* Reset the whole chain */ periodic->cur_backend = 0; -- 2.47.3