Skip to content

Commit 4e6db0f

Browse files
PommaqPommaq
andauthored
address #49 (#53)
Co-authored-by: Pommaq <[email protected]>
1 parent adc5e44 commit 4e6db0f

File tree

1 file changed

+2
-2
lines changed
  • crates/cli-interface/src

1 file changed

+2
-2
lines changed

crates/cli-interface/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ pub fn entrypoint(args: Arguments) -> Result {
9393
match res {
9494
Some(password) => match std::str::from_utf8(&password) {
9595
Ok(password) => {
96-
info!("Success! Found password: {}", password)
96+
info!("Success! Found password, displaying as UTF-8: '{}'", password)
9797
}
9898
Err(_) => {
9999
let hex_string: String = password
@@ -102,7 +102,7 @@ pub fn entrypoint(args: Arguments) -> Result {
102102
.collect::<Vec<String>>()
103103
.join(" ");
104104
info!(
105-
"Success! Found password, but it contains invalid UTF-8 characters. Displaying as hex: {}",
105+
"Success! Found password, but it contains invalid UTF-8 characters. Displaying as hex: '{}'",
106106
hex_string
107107
)
108108
}

0 commit comments

Comments
 (0)