aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2022-02-09 21:41:54 +0100
committerGitHub <noreply@github.com>2022-02-09 23:41:54 +0300
commitd1608dd03e330e2c53ebf451b6f60d027a30091d (patch)
tree441c793da616fdaad21a1721657a300316513704
parent8afeb2c602bc479ae2554178ea1ed176a18af8f5 (diff)
downloadalacritty-d1608dd03e330e2c53ebf451b6f60d027a30091d.tar.gz
alacritty-d1608dd03e330e2c53ebf451b6f60d027a30091d.zip
Add version to info log
-rw-r--r--alacritty/src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/alacritty/src/main.rs b/alacritty/src/main.rs
index 368151b4..8942aa30 100644
--- a/alacritty/src/main.rs
+++ b/alacritty/src/main.rs
@@ -136,6 +136,7 @@ fn alacritty(options: Options) -> Result<(), String> {
.expect("Unable to initialize logger");
info!("Welcome to Alacritty");
+ info!("Version {}", env!("VERSION"));
#[cfg(all(feature = "x11", not(any(target_os = "macos", windows))))]
info!("Running on {}", if window_event_loop.is_x11() { "X11" } else { "Wayland" });