Skip to content

Commit 5cc54d1

Browse files
committed
Add \r\n to avoid weird formatting of output
1 parent 6dda48c commit 5cc54d1

File tree

1 file changed

+3
-1
lines changed
  • espflash/src/cli/monitor

1 file changed

+3
-1
lines changed

espflash/src/cli/monitor/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,9 @@ pub fn monitor(
108108
let stdout = stdout();
109109
let mut stdout = if monitor_args.no_addresses {
110110
if monitor_args.all_addresses {
111-
log::warn!("Using ` --no-addresses` disables address resolution, making `--all-addresses` ineffective. Consider using only one of these flags."
111+
log::warn!(
112+
"Using ` --no-addresses` disables address resolution, making `--all-addresses` ineffective. Consider using only one of these flags.\r\n"
113+
);
112114
}
113115

114116
ResolvingPrinter::new_no_addresses(firmware_elf, stdout.lock())

0 commit comments

Comments
 (0)