From 1a3ffb7e0b1ac1a56b17f6a235841c105ba02aed Mon Sep 17 00:00:00 2001 From: Vsevolod Stakhov Date: Tue, 15 May 2018 15:38:25 +0100 Subject: [PATCH] [Minor] Add extra logging details --- src/fuzzy_storage.c | 5 +++++ src/rspamd.c | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/fuzzy_storage.c b/src/fuzzy_storage.c index d5410bc76..e0db2182c 100644 --- a/src/fuzzy_storage.c +++ b/src/fuzzy_storage.c @@ -2666,12 +2666,17 @@ fuzzy_peer_rep (struct rspamd_worker *worker, rspamd_socket_nonblocking (rep_fd); } + msg_info ("got peer fd reply from the main process"); + /* Start listening */ cur = worker->cf->listen_socks; while (cur) { ls = cur->data; if (ls->fd != -1) { + msg_info ("start listening on %s", + rspamd_inet_address_to_string_pretty (ls->addr)); + if (ls->type == RSPAMD_WORKER_SOCKET_UDP) { accept_events = g_malloc0 (sizeof (struct event) * 2); event_set (&accept_events[0], ls->fd, EV_READ | EV_PERSIST, diff --git a/src/rspamd.c b/src/rspamd.c index ab065a967..cc3be3357 100644 --- a/src/rspamd.c +++ b/src/rspamd.c @@ -558,8 +558,9 @@ spawn_workers (struct rspamd_main *rspamd_main, struct event_base *ev_base) } else { if (!cf->enabled || cf->count <= 0) { - msg_info_main ("worker of type %s is disabled in the config, " - "skip spawning", g_quark_to_string (cf->type)); + msg_info_main ("worker of type %s(%s) is disabled in the config, " + "skip spawning", g_quark_to_string (cf->type), + cf->bind_conf ? cf->bind_conf->bind_line : "none"); cur = g_list_next (cur); continue; -- 2.39.5