Starts the server; make slight changes in server code
so that it understands qt's resource system (qrc)
we can use that to manage the html related files
(would be stored in app bundle for mac osx, and in
perhaps /usr/local/share for Linux by qt)
Change-Id: I8cc9e7bd99000d287bac5e6c8bd86008924351c6
diff --git a/server/server.cpp b/server/server.cpp
index 5fcc5d9..fa20be7 100644
--- a/server/server.cpp
+++ b/server/server.cpp
@@ -11,7 +11,9 @@
 #include "server.hpp"
 #include <boost/bind.hpp>
 #include <signal.h>
+#include "logging.h"
 
+INIT_LOGGER ("HttpServer");
 namespace http {
 namespace server {
 
@@ -44,6 +46,8 @@
   acceptor_.listen();
 
   start_accept();
+
+  _LOG_DEBUG("Listen on [" << address << ": " << port << "] with doc_root = " << doc_root);
 }
 
 void server::run()