mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Log where config was loaded from
This commit is contained in:
parent
8990aa4568
commit
eb231b3e70
1 changed files with 3 additions and 0 deletions
|
@ -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.
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue