commit | 4c3cbc61689c714e34a7bb80b1ace90db37a36c1 | [log] [tgz] |
---|---|---|
author | Ed Tanous <ed.tanous@intel.com> | Tue May 16 09:17:42 2017 -0700 |
committer | Ed Tanous <ed.tanous@intel.com> | Tue May 16 09:17:42 2017 -0700 |
tree | 96ec13d718374b53170f70d0aee60a0badfabc59 | |
parent | 2d02dcde06b3d9bb6d43936ef9dc34010b5f1301 [diff] |
enable logging
diff --git a/src/webserver_main.cpp b/src/webserver_main.cpp index 82b83a7..027c926 100644 --- a/src/webserver_main.cpp +++ b/src/webserver_main.cpp
@@ -310,9 +310,12 @@ return j; }); - + LOG(DEBUG) << "Building SSL context"; auto ssl_context = ensuressl::get_ssl_context(ssl_pem_file); - app.port(18080) + int port = 18080; + + LOG(DEBUG) << "Starting webserver on port " << port; + app.port(port) //.ssl(std::move(ssl_context)) //.concurrency(4) .run();