diff options
author | uis <uis9936@gmail.com> | 2018-10-14 19:28:27 +0200 |
---|---|---|
committer | uis <uis9936@gmail.com> | 2018-10-17 18:34:53 +0200 |
commit | fcdaed08febfc95dacfb099f27cbcd7f9db59369 (patch) | |
tree | 31a921e8413ff4e944cacf4ab096c9a6d81e390e /src/GlobalState.cpp | |
parent | Update README.md (diff) | |
download | AltCraft-fcdaed08febfc95dacfb099f27cbcd7f9db59369.tar AltCraft-fcdaed08febfc95dacfb099f27cbcd7f9db59369.tar.gz AltCraft-fcdaed08febfc95dacfb099f27cbcd7f9db59369.tar.bz2 AltCraft-fcdaed08febfc95dacfb099f27cbcd7f9db59369.tar.lz AltCraft-fcdaed08febfc95dacfb099f27cbcd7f9db59369.tar.xz AltCraft-fcdaed08febfc95dacfb099f27cbcd7f9db59369.tar.zst AltCraft-fcdaed08febfc95dacfb099f27cbcd7f9db59369.zip |
Diffstat (limited to '')
-rw-r--r-- | src/GlobalState.cpp | 4 |
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 +} |