From ab2db49af5467ec972e297259dd8c23022783347 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Sun, 12 Apr 2020 04:27:09 +0300 Subject: [PATCH] Log critical errors with error! instead of println! --- alacritty/src/main.rs | 4 ++-- 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 ca91294..6bb9041 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 feb09c6..013a055 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); }