diff options
author | Joe Wilm <joe@jwilm.com> | 2017-09-11 11:12:25 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2017-09-11 11:12:45 -0700 |
commit | eb231b3e70b87875df4bdd1974d5e94704024d70 (patch) | |
tree | dc4d71e135e40093138449e5149edf93dea6e25e | |
parent | 8990aa4568ea8a7481f827512b7487be4d39332a (diff) | |
download | alacritty-eb231b3e70b87875df4bdd1974d5e94704024d70.tar.gz alacritty-eb231b3e70b87875df4bdd1974d5e94704024d70.zip |
Log where config was loaded from
-rw-r--r-- | src/main.rs | 3 |
1 files changed, 3 insertions, 0 deletions
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<Error>> { logging::initialize(&options)?; info!("Welcome to Alacritty."); + config.path().map(|config_path| { + info!("Configuration loaded from {}", config_path.display()); + }); // Create a display. // |