Skip to content

Commit e65ceb2

Browse files
authored
Merge pull request #2248 from alexheretic/master
Fix config warnings leaking into stdout
2 parents 004f783 + db0a723 commit e65ceb2

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)