We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70a63b8 commit 123b71fCopy full SHA for 123b71f
uefi-test-runner/examples/timestamp.rs
@@ -51,14 +51,14 @@ pub fn test_timestamp() {
51
.expect("Founded Timestamp Protocol but open failed");
52
// ANCHOR: text
53
let timestamp = timestamp_proto.get_timestamp();
54
- info!("Timestamp Protocol's timestamp: {:?}", timestamp);
+ info!("Timestamp Protocol's timestamp: {timestamp:?}");
55
56
let properties = timestamp_proto.get_properties();
57
- info!("Timestamp Protocol's properties: {:?}", properties);
+ info!("Timestamp Protocol's properties: {properties:?}");
58
// ANCHOR_END: text
59
}
60
Err(err) => {
61
- warn!("Failed to found Timestamp Protocol: {:?}", err);
+ warn!("Failed to found Timestamp Protocol: {err}");
62
63
64
0 commit comments