]> granicus.if.org Git - icinga2/commitdiff
Change loglines for checkables so checkable is quoted
authorThomas Widhalm <thomas.widhalm@icinga.com>
Wed, 23 Aug 2017 17:11:46 +0000 (19:11 +0200)
committerMichael Friedrich <michael.friedrich@icinga.com>
Tue, 5 Sep 2017 12:53:27 +0000 (14:53 +0200)
refs #5529

lib/icinga/checkable-check.cpp

index 1f0096f92812544c8de0d9f204dd4b8e873a3f9a..235f3a9dd38fe52b565ae58c733675c44fa202d0 100644 (file)
@@ -354,13 +354,13 @@ void Checkable::ProcessCheckResult(const CheckResult::Ptr& cr, const MessageOrig
        if (hardChange || (is_volatile && !(IsStateOK(old_state) && IsStateOK(new_state)))) {
                OnStateChange(this, cr, StateTypeHard, origin);
                Log(LogNotice, "Checkable")
-                   << "State Change: Checkable " << GetName() << " hard state change from " << old_state_str << " to " << new_state_str << " detected." << (is_volatile ? " Checkable is volatile." : "");
+                   << "State Change: Checkable '" << GetName() << "' hard state change from " << old_state_str << " to " << new_state_str << " detected." << (is_volatile ? " Checkable is volatile." : "");
        }
        /* Whether a state change happened or the state type is SOFT (must be logged too). */
        else if (stateChange || GetStateType() == StateTypeSoft) {
                OnStateChange(this, cr, StateTypeSoft, origin);
                Log(LogNotice, "Checkable")
-                   << "State Change: Checkable " << GetName() << " soft state change from " << old_state_str << " to " << new_state_str << " detected.";
+                   << "State Change: Checkable '" << GetName() << "' soft state change from " << old_state_str << " to " << new_state_str << " detected.";
        }
 
        if (GetStateType() == StateTypeSoft || hardChange || recovery ||