chore(alerting): removes double logging

This commit is contained in:
bergquist 2016-12-20 08:34:44 +01:00
parent a230ff65a9
commit 80d438ca49

View File

@ -137,7 +137,6 @@ func (e *DashAlertExtractor) GetAlerts() ([]*m.Alert, error) {
if err == nil && alert.ValidToSave() {
alerts = append(alerts, alert)
} else {
e.log.Error("Failed to extract alerts from dashboard", "error", err)
return nil, err
}
}