diff options
| -rw-r--r-- | src/output/formats.rs | 8 | 
1 files changed, 7 insertions, 1 deletions
| diff --git a/src/output/formats.rs b/src/output/formats.rs index 10d84fc..599e804 100644 --- a/src/output/formats.rs +++ b/src/output/formats.rs @@ -23,7 +23,13 @@ impl Format for HumanReadable {          use colored::Colorize;          let mut result = String::new(); -        writeln!(result, "{}: {:?}", "File".green(), item.log_file).unwrap(); +        writeln!( +            result, +            "{}: {}", +            "File".green(), +            item.log_file.to_string_lossy() +        ) +        .unwrap();          let outcome = match item.outcome {              FightOutcome::Success => "SUCCESS".green(),              FightOutcome::Wipe => "WIPE".red(), | 
