From 31cd8365582c20af907e41c805200bae753f5a3c Mon Sep 17 00:00:00 2001 From: David Cernat Date: Tue, 4 Apr 2017 08:24:11 +0300 Subject: [PATCH] [General] Small tweaks to debug info --- apps/openmw-mp/processors/world/ProcessorContainer.hpp | 2 +- apps/openmw/mwmp/LocalPlayer.cpp | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/openmw-mp/processors/world/ProcessorContainer.hpp b/apps/openmw-mp/processors/world/ProcessorContainer.hpp index 47993df2f..1f2097295 100644 --- a/apps/openmw-mp/processors/world/ProcessorContainer.hpp +++ b/apps/openmw-mp/processors/world/ProcessorContainer.hpp @@ -19,7 +19,7 @@ namespace mwmp void Do(WorldPacket &packet, Player &player, BaseEvent &event) override { - LOG_APPEND(Log::LOG_WARN, "- action: %i", event.action); + LOG_APPEND(Log::LOG_INFO, "- action: %i", event.action); // Until we have a timestamp-based system, send packets pertaining to more // than one container (i.e. replies to server requests for container contents) diff --git a/apps/openmw/mwmp/LocalPlayer.cpp b/apps/openmw/mwmp/LocalPlayer.cpp index 1b056f08d..75965460a 100644 --- a/apps/openmw/mwmp/LocalPlayer.cpp +++ b/apps/openmw/mwmp/LocalPlayer.cpp @@ -1024,6 +1024,7 @@ void LocalPlayer::sendSpellbook() void LocalPlayer::sendCellStates() { + LOG_MESSAGE_SIMPLE(Log::LOG_INFO, "Sending ID_PLAYER_CELL_STATE to server"); getNetworking()->getPlayerPacket(ID_PLAYER_CELL_STATE)->setPlayer(this); getNetworking()->getPlayerPacket(ID_PLAYER_CELL_STATE)->Send();