summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authortiptorrent development team <tiptorrent@soleta.eu>2022-02-10 15:30:32 +0100
committertiptorrent development team <tiptorrent@soleta.eu>2022-02-10 15:33:01 +0100
commit8b6f56c76ee2a7c3fe73b2d552e4c2c0e423cf0b (patch)
tree8036329c5161d8d12c57822b1a702654f9eafe32 /src
parentb377975a139a43907e1cee045a4ef3d589235dbd (diff)
display options in logging
Diffstat (limited to 'src')
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 2765467..15afaf7 100644
--- a/src/main.c
+++ b/src/main.c
@@ -110,7 +110,8 @@ int main(int argc, char *argv[])
ev_io_init(&ev_io_server_rest, tip_server_accept_cb, socket_rest, EV_READ);
ev_io_start(tip_main_loop, &ev_io_server_rest);
- syslog(LOG_INFO, "Waiting for connections\n");
+ syslog(LOG_INFO, "Starting tiptorrent server, max_clients=%u redirection=%u root=%s\n",
+ max_clients, max_redirect, root);
while (1)
ev_loop(tip_main_loop, 0);