summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShaquille Johnson <ssjohnson@google.com>2024-02-29 14:26:44 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2024-02-29 14:26:44 +0000
commita83982159f6e5bb3d5d123ab2fed0e3d9747b4bb (patch)
tree21eaeda9c02a938a1228b3b6fc1bada89b020e5c
parentd25c50c909217eac4df5e28b5ec57406f0986789 (diff)
parent89106b8e6e2c1215124b0b2aa5605ffe52b445a9 (diff)
downloadsecurity-a83982159f6e5bb3d5d123ab2fed0e3d9747b4bb.tar.gz
Merge "Change the log level from error to warn" into main
-rw-r--r--keystore2/src/operation.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystore2/src/operation.rs b/keystore2/src/operation.rs
index eabc1abb..11eaf17a 100644
--- a/keystore2/src/operation.rs
+++ b/keystore2/src/operation.rs
@@ -290,7 +290,7 @@ impl Operation {
// We abort the operation. If there was an error we log it but ignore it.
if let Err(e) = map_km_error(self.km_op.abort()) {
- log::error!("In prune: KeyMint::abort failed with {:?}.", e);
+ log::warn!("In prune: KeyMint::abort failed with {:?}.", e);
}
Ok(())