From: Gunnar Beutner Date: Thu, 29 Aug 2013 14:08:03 +0000 (+0200) Subject: Add log message to DynamicObject::RestoreObjects(). X-Git-Tag: v0.0.3~652 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4800329410f4f235431635335de43d51412f0bc0;p=icinga2 Add log message to DynamicObject::RestoreObjects(). --- 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); }