diff --git a/common/eqemu_logsys.cpp b/common/eqemu_logsys.cpp index ac81c106a..8a3a49adf 100644 --- a/common/eqemu_logsys.cpp +++ b/common/eqemu_logsys.cpp @@ -109,8 +109,6 @@ std::string EQEmuLogSys::FormatDebugCategoryMessageString(uint16 log_category, s return StringFormat("%s%s", category_string.c_str(), in_message.c_str()); } - - void EQEmuLogSys::ProcessGMSay(uint16 log_type, uint16 log_category, std::string message) { /* Check if category enabled for process */ diff --git a/zone/worldserver.cpp b/zone/worldserver.cpp index 2166aba56..06c4a26cb 100644 --- a/zone/worldserver.cpp +++ b/zone/worldserver.cpp @@ -748,7 +748,7 @@ void WorldServer::Process() { } case ServerOP_SyncWorldTime: { if(zone!=0) { - std::cout << "Received Message SyncWorldTime" << std::endl; + logger.LogDebugType(EQEmuLogSys::Moderate, EQEmuLogSys::Zone_Server, __FUNCTION__ "Received Message SyncWorldTime"); eqTimeOfDay* newtime = (eqTimeOfDay*) pack->pBuffer; zone->zone_time.setEQTimeOfDay(newtime->start_eqtime, newtime->start_realtime); EQApplicationPacket* outapp = new EQApplicationPacket(OP_TimeOfDay, sizeof(TimeOfDay_Struct));