Explorar el Código

[Minor] Add extra logging details

tags/1.7.5
Vsevolod Stakhov hace 6 años
padre
commit
1a3ffb7e0b
Se han modificado 2 ficheros con 8 adiciones y 2 borrados
  1. 5
    0
      src/fuzzy_storage.c
  2. 3
    2
      src/rspamd.c

+ 5
- 0
src/fuzzy_storage.c Ver fichero

@@ -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,

+ 3
- 2
src/rspamd.c Ver fichero

@@ -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;

Cargando…
Cancelar
Guardar