Skip to content

Commit

Permalink
chore(alerts): use ERR instead of WARN
Browse files Browse the repository at this point in the history
  • Loading branch information
fiftin committed Sep 19, 2023
1 parent 80cb157 commit 47f9c85
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/tasks/alert.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ func (t *TaskRunner) sendMailAlert() {
}

if err2 != nil {
util.LogWarning(err2)
util.LogError(err2)
continue
}

Expand All @@ -77,7 +77,7 @@ func (t *TaskRunner) sendMailAlert() {
}

if err2 != nil {
util.LogWarning(err2)
util.LogError(err2)
}
}
}
Expand Down

0 comments on commit 47f9c85

Please sign in to comment.