print error while errors appears

This commit is contained in:
marc
2020-11-09 14:30:21 +01:00
parent 8771b7865e
commit 65e67ec4e9

View File

@@ -103,7 +103,13 @@ impl ContainerRegistry for DockerHub {
StatusCode::OK => true,
_ => false,
},
Err(_) => false,
Err(e) => {
error!(
"While try to retrieving if DockerHub repository exist {:?}",
e
);
false
}
}
}