Move worldserver logging ot use LogInfo

This commit is contained in:
Akkadius
2019-09-01 22:53:23 -05:00
parent 678c25e02c
commit be291d58b0
11 changed files with 194 additions and 196 deletions
+1 -1
View File
@@ -503,7 +503,7 @@ int main(int argc, char** argv) {
//now that we know what patch they are running, start up their client object
struct in_addr in;
in.s_addr = eqsi->GetRemoteIP();
Log(Logs::Detail, Logs::WorldServer, "New client from %s:%d", inet_ntoa(in), ntohs(eqsi->GetRemotePort()));
LogInfo("New client from [{}]:[{}]", inet_ntoa(in), ntohs(eqsi->GetRemotePort()));
auto client = new Client(eqsi);
entity_list.AddClient(client);
}