summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 8f702be6..f5de932f 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -180,7 +180,9 @@ int main(int argc, char *argv[])
session->startListen(connectionHandler, SERVER_PORT);
LOG_INFO("Listening on port " << SERVER_PORT << "...")
- tmwserv::Storage& store = tmwserv::Storage::instance();
+ using namespace tmwserv;
+
+ Storage& store = Storage::instance();
LOG_INFO("Number of accounts on server: " << store.getAccountCount())