From: Vsevolod Stakhov Date: Fri, 18 Oct 2019 10:53:02 +0000 (+0100) Subject: [Minor] Reduce debug noise for maps X-Git-Tag: 2.1~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc5a2dab9bba0aecf1fbc51877d63a0f4b1fc890;p=thirdparty%2Frspamd.git [Minor] Reduce debug noise for maps --- diff --git a/src/libutil/map.c b/src/libutil/map.c index 02e3913a49..9a9da740a7 100644 --- a/src/libutil/map.c +++ b/src/libutil/map.c @@ -586,7 +586,7 @@ read_map_file_chunks (struct rspamd_map *map, struct map_cb_data *cbdata, while ((r = read (fd, pos, avail)) > 0) { gchar *end = bytes + (pos - bytes) + r; - msg_info_map ("%s: read map chunk, %z bytes", fname, + msg_debug_map ("%s: read map chunk, %z bytes", fname, r); pos = map->read_callback (bytes, end - bytes, cbdata, r == len);