Skip to content

Commit 8908d95

Browse files
Fix incorrect error println
1 parent f6dbc69 commit 8908d95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ fn execute_commands(
313313
}
314314

315315
if must_log_command || multiple_commands.is_some_and(|b| b) {
316-
println_error!("{} {}", "+".repeat(repl_index + 1), command_string.trim());
316+
println!("{} {}", "+".repeat(repl_index + 1), command_string.trim());
317317
}
318318
match command.execute(context, arguments) {
319319
Ok(_) => &input[next_command_index..],

0 commit comments

Comments
 (0)