Log where config was loaded from

This commit is contained in:
Joe Wilm 2017-09-11 11:12:25 -07:00
parent 8990aa4568
commit eb231b3e70
1 changed files with 3 additions and 0 deletions

View File

@ -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.
//