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 adc5e44 commit 4e6db0fCopy full SHA for 4e6db0f
crates/cli-interface/src/lib.rs
@@ -93,7 +93,7 @@ pub fn entrypoint(args: Arguments) -> Result {
93
match res {
94
Some(password) => match std::str::from_utf8(&password) {
95
Ok(password) => {
96
- info!("Success! Found password: {}", password)
+ info!("Success! Found password, displaying as UTF-8: '{}'", password)
97
}
98
Err(_) => {
99
let hex_string: String = password
@@ -102,7 +102,7 @@ pub fn entrypoint(args: Arguments) -> Result {
102
.collect::<Vec<String>>()
103
.join(" ");
104
info!(
105
- "Success! Found password, but it contains invalid UTF-8 characters. Displaying as hex: {}",
+ "Success! Found password, but it contains invalid UTF-8 characters. Displaying as hex: '{}'",
106
hex_string
107
)
108
0 commit comments