Skip to content

Commit

Permalink
Remove debug output, part 2
Browse files Browse the repository at this point in the history
refs #11014
  • Loading branch information
Michael Friedrich authored and gunnarbeutner committed Feb 23, 2016
1 parent 186b520 commit a49f8f1
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions lib/db_ido/dbobject.cpp
Expand Up @@ -130,9 +130,6 @@ void DbObject::SendStatusUpdate(void)
if (query.Table != "endpointstatus" && query.Table != "zonestatus") {
String node = IcingaApplication::GetInstance()->GetNodeName();

Log(LogDebug, "DbObject")
<< "Endpoint node: '" << node << "' status update for '" << GetObject()->GetName() << "'";

Endpoint::Ptr endpoint = Endpoint::GetByName(node);
if (endpoint)
query.Fields->Set("endpoint_object_id", endpoint);
Expand Down Expand Up @@ -164,9 +161,6 @@ void DbObject::SendVarsConfigUpdate(void)
Dictionary::Ptr vars = CompatUtility::GetCustomAttributeConfig(custom_var_object);

if (vars) {
Log(LogDebug, "DbObject")
<< "Updating object vars for '" << custom_var_object->GetName() << "'";

ObjectLock olock (vars);

BOOST_FOREACH(const Dictionary::Pair& kv, vars) {
Expand Down Expand Up @@ -219,9 +213,6 @@ void DbObject::SendVarsStatusUpdate(void)
Dictionary::Ptr vars = CompatUtility::GetCustomAttributeConfig(custom_var_object);

if (vars) {
Log(LogDebug, "DbObject")
<< "Updating object vars for '" << custom_var_object->GetName() << "'";

ObjectLock olock (vars);

BOOST_FOREACH(const Dictionary::Pair& kv, vars) {
Expand Down Expand Up @@ -344,9 +335,6 @@ void DbObject::VarsChangedHandler(const CustomVarObject::Ptr& object)
{
DbObject::Ptr dbobj = GetOrCreateByObject(object);

Log(LogDebug, "DbObject")
<< "Vars changed for object '" << object->GetName() << "'";

if (!dbobj)
return;

Expand Down

0 comments on commit a49f8f1

Please sign in to comment.