Skip to content

Commit

Permalink
Reduce level of Balena update failure log message (#2600)
Browse files Browse the repository at this point in the history
Occasionally Balena's API returns a server error when we poll for device updates.
It's not a problem that warrants our attention every time it happens, so reduce
the log message about it from "error" to "warn" level.
  • Loading branch information
sgrimm authored Nov 15, 2024
1 parent e2113a8 commit b42d1f5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class BalenaPoller(
}
}
} catch (e: Exception) {
log.error("Unable to process Balena device updates", e)
log.warn("Unable to process Balena device updates", e)
}
}
}

0 comments on commit b42d1f5

Please sign in to comment.