From 4800329410f4f235431635335de43d51412f0bc0 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Thu, 29 Aug 2013 16:08:03 +0200 Subject: [PATCH] Add log message to DynamicObject::RestoreObjects(). --- lib/base/dynamicobject.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/base/dynamicobject.cpp b/lib/base/dynamicobject.cpp index 2ec88cbdf..6232fb613 100644 --- a/lib/base/dynamicobject.cpp +++ b/lib/base/dynamicobject.cpp @@ -278,6 +278,7 @@ void DynamicObject::RestoreObjects(const String& filename, int attributeTypes) if (object) { ASSERT(!object->IsActive()); + Log(LogDebug, "base", "Restoring object '" + name + "' of type '" + type "'."); object->Deserialize(update, attributeTypes); }