From eb231b3e70b87875df4bdd1974d5e94704024d70 Mon Sep 17 00:00:00 2001 From: Joe Wilm Date: Mon, 11 Sep 2017 11:12:25 -0700 Subject: [PATCH] Log where config was loaded from --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.rs b/src/main.rs index b8b82914..97e55341 100644 --- a/src/main.rs +++ b/src/main.rs @@ -85,6 +85,9 @@ fn run(mut config: Config, options: cli::Options) -> Result<(), Box> { logging::initialize(&options)?; info!("Welcome to Alacritty."); + config.path().map(|config_path| { + info!("Configuration loaded from {}", config_path.display()); + }); // Create a display. //