From: Sebastian Harl Date: Wed, 28 Jan 2015 15:20:19 +0000 (+0100) Subject: frontend: Log an INFO message about which listener sockets are in use. X-Git-Tag: sysdb-0.7.0~39 X-Git-Url: https://git.tokkee.org/?p=sysdb.git;a=commitdiff_plain;h=a8dbf2397fcafd05081cc5bd489ad6d6a85955d9 frontend: Log an INFO message about which listener sockets are in use. --- diff --git a/src/frontend/sock.c b/src/frontend/sock.c index c9d28b1..eb75315 100644 --- a/src/frontend/sock.c +++ b/src/frontend/sock.c @@ -393,6 +393,7 @@ listener_listen(listener_t *listener) listener->address, sdb_strerror(errno, buf, sizeof(buf))); return -1; } + sdb_log(SDB_LOG_INFO, "frontend: Listening on %s", listener->address); return 0; } /* listener_listen */