From 8215ede12147a104079b1c0b2fc77f2e0ed5a88b Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Mon, 16 May 2016 14:49:39 +0200 Subject: [PATCH] [Minor] Add more logs about file maps watching --- src/libutil/map.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libutil/map.c b/src/libutil/map.c index 77c806b19..ae6d59885 100644 --- a/src/libutil/map.c +++ b/src/libutil/map.c @@ -784,9 +784,12 @@ rspamd_map_file_check_callback (gint fd, short what, void *ud) if (stat (data->filename, &st) != -1 && (st.st_mtime > data->st.st_mtime || data->st.st_mtime == -1)) { /* File was modified since last check */ + msg_info_map ("old mtime is %t, new mtime is %t for map file %s", + data->st.st_mtime, st.st_mtime, data->filename); memcpy (&data->st, &st, sizeof (struct stat)); periodic->need_modify = TRUE; periodic->cur_backend = 0; + rspamd_map_periodic_callback (-1, EV_TIMEOUT, periodic); return; -- 2.39.5