Replace eprintln! with warn!

This commit is contained in:
Alexandre Bury 2017-11-20 12:47:51 -08:00
parent 0c39f52016
commit 5a52b8de69

View File

@ -300,7 +300,7 @@ impl backend::Backend for Concrete {
269 => Event::Ctrl(Key::Up), 269 => Event::Ctrl(Key::Up),
270 => Event::CtrlShift(Key::Up), 270 => Event::CtrlShift(Key::Up),
other => { other => {
eprintln!("Unknown: {}", other); warn!("Unknown: {}", other);
Event::Unknown(split_i32(other)) Event::Unknown(split_i32(other))
} }
}, },