summaryrefslogtreecommitdiffstats
path: root/src/GlobalState.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/GlobalState.cpp')
-rw-r--r--src/GlobalState.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GlobalState.cpp b/src/GlobalState.cpp
index 8d75bac..9675d4b 100644
--- a/src/GlobalState.cpp
+++ b/src/GlobalState.cpp
@@ -36,7 +36,7 @@ void InitEvents() {
LOG(ERROR) << "Already connected";
return;
}
- LOG(INFO) << "Connecting to server";
+ LOG(INFO) << "Connecting to server at address " + std::get<0>(data) + ":" + std::to_string(std::get<1>(data)) + " as " + std::get<2>(data);
PUSH_EVENT("Connecting",0);
gs = std::make_unique<GameState>();
isPhysRunning = true;
@@ -228,4 +228,4 @@ void GlobalState::SetState(const State &newState) {
if (newState != state)
PUSH_EVENT("StateUpdated", 0);
state = newState;
-} \ No newline at end of file
+}