Skip to content

Commit

Permalink
chore(logging): Fix typo in log
Browse files Browse the repository at this point in the history
relates to #688
  • Loading branch information
TwiN committed Jan 20, 2025
1 parent 1c99386 commit dd839be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion watchdog/alerting.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func handleAlertsToResolve(ep *endpoint.Endpoint, result *endpoint.Result, alert
logr.Errorf("[watchdog.handleAlertsToResolve] Failed to delete persisted triggered endpoint alert for endpoint with key=%s: %s", ep.Key(), err.Error())
}
if !endpointAlert.IsSendingOnResolved() {
logr.Debugf("[watchdog.handleAlertsToResolve] Not sending request to provider of alert with type=%s for endpoint with key=%s despite being RESOLVED, because send-on-resolve is set to false", endpointAlert.Type, ep.Key())
logr.Debugf("[watchdog.handleAlertsToResolve] Not sending request to provider of alert with type=%s for endpoint with key=%s despite being RESOLVED, because send-on-resolved is set to false", endpointAlert.Type, ep.Key())
continue
}
alertProvider := alertingConfig.GetAlertingProviderByAlertType(endpointAlert.Type)
Expand Down

0 comments on commit dd839be

Please sign in to comment.