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 | |
parent | f14d24542c3ceda3b508c707eb79cf2fe2a04bd1 (diff) | |
download | alacritty-ab2db49af5467ec972e297259dd8c23022783347.tar.gz alacritty-ab2db49af5467ec972e297259dd8c23022783347.zip |
Log critical errors with error! instead of println!
-rw-r--r-- | alacritty/src/main.rs | 4 | ||||
-rw-r--r-- | alacritty/src/window.rs | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/alacritty/src/main.rs b/alacritty/src/main.rs index ca912943..6bb9041c 100644 --- a/alacritty/src/main.rs +++ b/alacritty/src/main.rs @@ -32,7 +32,7 @@ use std::sync::Arc; #[cfg(target_os = "macos")] use dirs; use glutin::event_loop::EventLoop as GlutinEventLoop; -use log::info; +use log::{error, info}; #[cfg(windows)] use winapi::um::wincon::{AttachConsole, FreeConsole, ATTACH_PARENT_PROCESS}; @@ -113,7 +113,7 @@ fn main() { // Run alacritty if let Err(err) = run(window_event_loop, config) { - println!("Alacritty encountered an unrecoverable error:\n\n\t{}\n", err); + error!("Alacritty encountered an unrecoverable error:\n\n\t{}\n", err); std::process::exit(1); } 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); } |