From: Vsevolod Stakhov Date: Mon, 16 May 2016 12:49:39 +0000 (+0200) Subject: [Minor] Add more logs about file maps watching X-Git-Tag: 1.3.0~466 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8215ede12147a104079b1c0b2fc77f2e0ed5a88b;p=thirdparty%2Frspamd.git [Minor] Add more logs about file maps watching --- diff --git a/src/libutil/map.c b/src/libutil/map.c index 77c806b196..ae6d598853 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;