fix(logger): 🚑 replace all \ with / in logs
This commit is contained in:
parent
ac54f9035b
commit
0c713daa9c
@ -39,7 +39,7 @@ impl StyledRecord {
|
|||||||
file: format!(
|
file: format!(
|
||||||
"{}{}{}",
|
"{}{}{}",
|
||||||
file_ansi_color,
|
file_ansi_color,
|
||||||
record.file().unwrap_or("unknown"),
|
record.file().unwrap_or("unknown").replace("\\", "/"),
|
||||||
RESET
|
RESET
|
||||||
),
|
),
|
||||||
line: format!("{}{}{}", line_ansi_color, record.line().unwrap_or(0), RESET),
|
line: format!("{}{}{}", line_ansi_color, record.line().unwrap_or(0), RESET),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user