Skip to content

Commit f11b456

Browse files
authored
fix(agent): improve error reporting when checking for updates (#1602)
1 parent 1331d69 commit f11b456

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • devolutions-agent/src/updater

devolutions-agent/src/updater/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ impl Task for UpdaterTask {
123123
let update_order = match check_for_updates(*product, &update_json).await {
124124
Ok(order) => order,
125125
Err(error) => {
126-
error!(%product, %error, "Failed to check for updates for a product.");
126+
error!(%product, error = format!("{error:#}"), "Failed to check for updates for a product");
127127
continue;
128128
}
129129
};

0 commit comments

Comments
 (0)