Fix log warning

This commit is contained in:
Alexandre Bury 2019-10-09 15:48:33 -07:00
parent 6a29371076
commit ea26112368

View File

@ -96,7 +96,7 @@ cfg_if::cfg_if! {
} else { } else {
impl Default for Cursive { impl Default for Cursive {
fn default() -> Self { fn default() -> Self {
log::warning!("No built-it backend, falling back to Cursive::dummy()."); log::warn!("No built-it backend, falling back to Cursive::dummy().");
Self::dummy() Self::dummy()
} }
} }