diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2020-04-12 04:27:09 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-12 04:27:09 +0300 |
commit | ab2db49af5467ec972e297259dd8c23022783347 (patch) | |
tree | c03f9150773668a5eacffb2e664dae7306245f0f /alacritty/src/window.rs | |
parent | f14d24542c3ceda3b508c707eb79cf2fe2a04bd1 (diff) | |
download | r-alacritty-ab2db49af5467ec972e297259dd8c23022783347.tar.gz r-alacritty-ab2db49af5467ec972e297259dd8c23022783347.tar.bz2 r-alacritty-ab2db49af5467ec972e297259dd8c23022783347.zip |
Log critical errors with error! instead of println!
Diffstat (limited to 'alacritty/src/window.rs')
-rw-r--r-- | alacritty/src/window.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/alacritty/src/window.rs b/alacritty/src/window.rs index feb09c61..013a0556 100644 --- a/alacritty/src/window.rs +++ b/alacritty/src/window.rs @@ -30,6 +30,7 @@ use glutin::window::{CursorIcon, Fullscreen, Window as GlutinWindow, WindowBuild use glutin::{self, ContextBuilder, PossiblyCurrent, WindowedContext}; #[cfg(not(target_os = "macos"))] use image::ImageFormat; +use log::error; #[cfg(not(any(target_os = "macos", windows)))] use x11_dl::xlib::{Display as XDisplay, PropModeReplace, XErrorEvent, Xlib}; @@ -434,6 +435,6 @@ fn x_embed_window(window: &GlutinWindow, parent_id: c_ulong) { #[cfg(not(any(target_os = "macos", windows)))] unsafe extern "C" fn xembed_error_handler(_: *mut XDisplay, _: *mut XErrorEvent) -> i32 { - println!("Could not embed into specified window."); + error!("Could not embed into specified window."); std::process::exit(1); } |