From 850b19badf55bf412577b1d9fba2f00a1daab8be Mon Sep 17 00:00:00 2001 From: David Cernat Date: Mon, 24 Apr 2017 11:04:28 +0300 Subject: [PATCH] [Client] Add clearer debug messages for Actor initialization --- apps/openmw/mwmp/Cell.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/openmw/mwmp/Cell.cpp b/apps/openmw/mwmp/Cell.cpp index 29cf1f5ef..dd4c91c5e 100644 --- a/apps/openmw/mwmp/Cell.cpp +++ b/apps/openmw/mwmp/Cell.cpp @@ -240,7 +240,7 @@ void Cell::initializeLocalActor(const MWWorld::Ptr& ptr) Main::get().getCellController()->setLocalActorRecord(mapIndex, getDescription()); - LOG_APPEND(Log::LOG_INFO, "- Initialized LocalActor %s", mapIndex.c_str()); + LOG_APPEND(Log::LOG_INFO, "- Initialized LocalActor %s in %s", mapIndex.c_str(), getDescription().c_str()); } void Cell::initializeLocalActors() @@ -267,7 +267,7 @@ void Cell::initializeDedicatedActor(const MWWorld::Ptr& ptr) Main::get().getCellController()->setDedicatedActorRecord(mapIndex, getDescription()); - LOG_APPEND(Log::LOG_INFO, "- Initialized DedicatedActor %s", mapIndex.c_str()); + LOG_APPEND(Log::LOG_INFO, "- Initialized DedicatedActor %s in %s", mapIndex.c_str(), getDescription().c_str()); } void Cell::initializeDedicatedActors(ActorList& actorList)