From: Vsevolod Stakhov Date: Wed, 28 Oct 2020 10:35:42 +0000 (+0000) Subject: [Minor] Add more logging in map reread reason X-Git-Tag: 2.7~188 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cddbd852602fce81486e7c71cac17f544e2c2071;p=thirdparty%2Frspamd.git [Minor] Add more logging in map reread reason --- 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;