# HG changeset patch # User Sebastien Jodogne # Date 1527267227 -7200 # Node ID 40c7926b75f8cef5811192a487c23614cebc6ce9 # Parent 42ac291f7b3fe14959105c7af4cb18312d0acaba log about remote access allowed diff -r 42ac291f7b3f -r 40c7926b75f8 Core/HttpServer/MongooseServer.cpp --- a/Core/HttpServer/MongooseServer.cpp Wed May 16 14:32:56 2018 +0200 +++ b/Core/HttpServer/MongooseServer.cpp Fri May 25 18:53:47 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 42ac291f7b3f -r 40c7926b75f8 OrthancServer/main.cpp --- a/OrthancServer/main.cpp Wed May 16 14:32:56 2018 +0200 +++ b/OrthancServer/main.cpp Fri May 25 18:53:47 2018 +0200 @@ -793,9 +793,6 @@ } httpServer.Start(); - LOG(WARNING) << "HTTP server listening on port: " << httpServer.GetPortNumber() - << " (HTTPS encryption is " - << (httpServer.IsSslEnabled() ? "enabled" : "disabled") << ")"; bool restart = WaitForExit(context, restApi);