Skip to content

Commit ec03f91

Browse files
authored
Merge pull request #136 from Defelo/push-xrzrooukqurl
builtin: make `Debug.Log` write to stderr instead of stdout
2 parents 976441f + def0d96 commit ec03f91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/par/builtin/debug.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ pub fn external_module() -> Module<Arc<process::Expression<()>>> {
2323

2424
async fn debug_log(mut handle: Handle) {
2525
let string = handle.receive().string().await;
26-
println!("{}", string.as_str());
26+
eprintln!("{}", string.as_str());
2727
handle.break_();
2828
}

0 commit comments

Comments
 (0)