Update log level for a debug message.

This commit is contained in:
Gunnar Beutner 2013-09-17 14:39:43 +02:00
parent 2c17affa4a
commit 74579fba59
1 changed files with 1 additions and 1 deletions

View File

@ -109,7 +109,7 @@ void ClusterComponent::Start(void)
privs = ~0;
}
Log(LogInformation, "cluster", "Privileges for object '" + object->GetName() + "' of type '" + object->GetType()->GetName() + "' for instance '" + endpoint->GetName() + "' are '" + Convert::ToString(privs) + "'");
Log(LogDebug, "cluster", "Privileges for object '" + object->GetName() + "' of type '" + object->GetType()->GetName() + "' for instance '" + endpoint->GetName() + "' are '" + Convert::ToString(privs) + "'");
object->SetPrivileges(endpoint->GetName(), privs);
}
}