Skip to content

Commit db0a723

Browse files
committed
Fix config warnings leaking into stdout
1 parent 004f783 commit db0a723

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ macro_rules! create_config {
361361
self.$i.1 = true;
362362
self.$i.2 = val;
363363
} else {
364-
println!("Warning: can't set `{} = {:?}`, unstable features are only \
364+
eprintln!("Warning: can't set `{} = {:?}`, unstable features are only \
365365
available in nightly channel.", stringify!($i), val);
366366
}
367367
}

0 commit comments

Comments
 (0)