# HG changeset patch # User Sebastien Jodogne # Date 1525874264 -7200 # Node ID fcf447be9e97b4b43487a7e1f9a5d7773504ff87 # Parent a84ce82fd55b4fd17d3051e058062fcf7fe96c9b warning message about the use of HTTPS diff -r a84ce82fd55b -r fcf447be9e97 OrthancServer/main.cpp --- a/OrthancServer/main.cpp Tue May 08 20:48:49 2018 +0200 +++ b/OrthancServer/main.cpp Wed May 09 15:57:44 2018 +0200 @@ -793,7 +793,9 @@ } httpServer.Start(); - LOG(WARNING) << "HTTP server listening on port: " << httpServer.GetPortNumber(); + LOG(WARNING) << "HTTP server listening on port: " << httpServer.GetPortNumber() + << " (HTTPS encryption is " + << (httpServer.IsSslEnabled() ? "enabled" : "disabled") << ")"; bool restart = WaitForExit(context, restApi);