diff options
Diffstat (limited to 'alacritty/src/logging.rs')
-rw-r--r-- | alacritty/src/logging.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/alacritty/src/logging.rs b/alacritty/src/logging.rs index ae564a00..4c92a9de 100644 --- a/alacritty/src/logging.rs +++ b/alacritty/src/logging.rs @@ -16,8 +16,6 @@ use log::{self, Level, LevelFilter}; use once_cell::sync::Lazy; use winit::event_loop::EventLoopProxy; -use alacritty_terminal::config::LOG_TARGET_CONFIG; - use crate::cli::Options; use crate::event::{Event, EventType}; use crate::message_bar::{Message, MessageType}; @@ -28,6 +26,9 @@ pub const LOG_TARGET_IPC_CONFIG: &str = "alacritty_log_ipc_config"; /// Name for the environment variable containing the log file's path. const ALACRITTY_LOG_ENV: &str = "ALACRITTY_LOG"; +/// Logging target for config error messages. +pub const LOG_TARGET_CONFIG: &str = "alacritty_config_derive"; + /// Name for the environment variable containing extra logging targets. /// /// The targets are semicolon separated. |