Show the uri to the running kore instance in foreground mode

This commit is contained in:
Joris Vink 2014-08-01 20:00:09 +02:00
parent 23164f636f
commit 6495e84005
1 changed files with 3 additions and 0 deletions

View File

@ -271,6 +271,9 @@ kore_server_bind(const char *ip, const char *port)
nlisteners++;
LIST_INSERT_HEAD(&listeners, l, list);
if (foreground)
kore_log(LOG_NOTICE, "running on https://%s:%s", ip, port);
return (KORE_RESULT_OK);
}