summaryrefslogtreecommitdiffstats
path: root/src/mad.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mad.cpp')
-rw-r--r--src/mad.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mad.cpp b/src/mad.cpp
index 137328a..81061ca 100644
--- a/src/mad.cpp
+++ b/src/mad.cpp
@@ -47,13 +47,13 @@ int main() {
Common::ClientConnection *connection = new Common::ClientConnection(&application);
try {
+ application.getRequestManager()->registerConnection(connection);
+
connection->connect(boost::asio::ip::tcp::endpoint(
boost::asio::ip::address_v4::from_string("127.0.0.1"), 6666));
connection->waitWhileConnecting();
- application.getRequestManager()->registerConnection(connection);
-
boost::shared_ptr<Core::Logger> networkLogger(new Daemon::Backends::NetworkLogger(&application, connection));
application.getLogManager()->registerLogger(networkLogger);