Skip to content

Commit 0c09afb

Browse files
authored
Merge pull request #1307 from golemfactory/exe-unit/log-err-better-ux
Exe unit/log err better ux
2 parents ca514f4 + 2a6b48f commit 0c09afb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

exe-unit/src/runtime/process.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ impl RuntimeProcess {
8282
})?)
8383
}
8484
false => {
85-
log::warn!(
85+
log::info!(
8686
"Cannot read offer template from runtime; using defaults [{}]",
8787
binary.display()
8888
);

utils/transfer/src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ pub enum Error {
106106
UnsupportedSchemeError(String),
107107
#[error("Unsupported digest: {0}")]
108108
UnsupportedDigestError(String),
109-
#[error("Invalid digest: {hash}, expected {expected}")]
109+
#[error("Downloaded VM image is corrupted: calculated hash {hash} differs from the expected one {expected}")]
110110
InvalidHashError { hash: String, expected: String },
111111
#[error("Hex error: {0}")]
112112
HexError(#[from] hex::FromHexError),

0 commit comments

Comments
 (0)