Browse Source

server : include scheme when printing URL (#10106)

Kevin Gibbons 1 year ago
parent
commit
0a683e8088
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/server/server.cpp

+ 1 - 1
examples/server/server.cpp

@@ -3259,7 +3259,7 @@ int main(int argc, char ** argv) {
         ctx_server.queue_tasks.terminate();
         ctx_server.queue_tasks.terminate();
     };
     };
 
 
-    LOG_INF("%s: server is listening on %s:%d - starting the main loop\n", __func__, params.hostname.c_str(), params.port);
+    LOG_INF("%s: server is listening on http://%s:%d - starting the main loop\n", __func__, params.hostname.c_str(), params.port);
 
 
     ctx_server.queue_tasks.start_loop();
     ctx_server.queue_tasks.start_loop();