# HG changeset patch # User Sebastien Jodogne # Date 1527267278 -7200 # Node ID 33c0b4da8cb2bebf519d337e8a6c060bdfdabf20 # Parent 2406ae891747c3ba22f4969187f33d4b1e7b8a47# Parent 442e7ef5cc41c7bf09261dc4869808656a7625b5 integration mainline->jobs diff -r 2406ae891747 -r 33c0b4da8cb2 Core/HttpServer/MongooseServer.cpp --- a/Core/HttpServer/MongooseServer.cpp Fri May 25 18:09:27 2018 +0200 +++ b/Core/HttpServer/MongooseServer.cpp Fri May 25 18:54:38 2018 +0200 @@ -997,6 +997,13 @@ { throw OrthancException(ErrorCode_HttpPortInUse); } + + LOG(WARNING) << "HTTP server listening on port: " << GetPortNumber() + << " (HTTPS encryption is " + << (IsSslEnabled() ? "enabled" : "disabled") + << ", remote access is " + << (IsRemoteAccessAllowed() ? "" : "not ") + << "allowed)"; } } diff -r 2406ae891747 -r 33c0b4da8cb2 OrthancServer/main.cpp --- a/OrthancServer/main.cpp Fri May 25 18:09:27 2018 +0200 +++ b/OrthancServer/main.cpp Fri May 25 18:54:38 2018 +0200 @@ -776,9 +776,6 @@ } httpServer.Start(); - LOG(WARNING) << "HTTP server listening on port: " << httpServer.GetPortNumber() - << " (HTTPS encryption is " - << (httpServer.IsSslEnabled() ? "enabled" : "disabled") << ")"; bool restart = WaitForExit(context, restApi);