diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-05-04 20:51:56 +0400 |
---|---|---|
committer | Josh Rahm <rahm@google.com> | 2024-08-14 15:42:41 -0600 |
commit | 823c945b0049565bfce1b26010183a2874dd06fe (patch) | |
tree | 07fc6c35e694893ee3db090b6090ad8485d73fc1 /alacritty/src/logging.rs | |
parent | ab31d0ec5bfaaf0084ffadf468932440c019224a (diff) | |
download | r-alacritty-823c945b0049565bfce1b26010183a2874dd06fe.tar.gz r-alacritty-823c945b0049565bfce1b26010183a2874dd06fe.tar.bz2 r-alacritty-823c945b0049565bfce1b26010183a2874dd06fe.zip |
Bump winit to 0.30.0
Diffstat (limited to 'alacritty/src/logging.rs')
-rw-r--r-- | alacritty/src/logging.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/alacritty/src/logging.rs b/alacritty/src/logging.rs index a3833a5b..59303649 100644 --- a/alacritty/src/logging.rs +++ b/alacritty/src/logging.rs @@ -28,6 +28,9 @@ const ALACRITTY_LOG_ENV: &str = "ALACRITTY_LOG"; /// Logging target for config error messages. pub const LOG_TARGET_CONFIG: &str = "alacritty_config_derive"; +/// Logging target for winit events. +pub const LOG_TARGET_WINIT: &str = "alacritty_winit_event"; + /// Name for the environment variable containing extra logging targets. /// /// The targets are semicolon separated. @@ -47,6 +50,7 @@ fn extra_log_targets() -> &'static [String] { const ALLOWED_TARGETS: &[&str] = &[ LOG_TARGET_IPC_CONFIG, LOG_TARGET_CONFIG, + LOG_TARGET_WINIT, "alacritty_config_derive", "alacritty_terminal", "alacritty", |