Add correct config file name to verbose server log

Server logging uses the wrong variable when displaying
the configuration file name. This update changes the
log to use the `config` variable.
This commit is contained in:
Michael Henderson 2017-10-08 22:23:07 -06:00 committed by Bjørn Erik Pedersen
parent 01e54609e7
commit 15ec031d98
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ func InitializeConfig(subCmdVs ...*cobra.Command) (*deps.DepsCfg, error) {
return nil, err
}
cfg.Logger.INFO.Println("Using config file:", viper.ConfigFileUsed())
cfg.Logger.INFO.Println("Using config file:", config.ConfigFileUsed())
themeDir := c.PathSpec().GetThemeDir()
if themeDir != "" {