Simplifed function GetConfigFilePath()

This commit is contained in:
Fabian Knorr 2018-02-06 20:14:04 +01:00
parent 48307d640f
commit e867180379
1 changed files with 2 additions and 3 deletions

View File

@ -1734,13 +1734,12 @@ func (v *Viper) getConfigFile() (string, error) {
return v.getConfigFile() return v.getConfigFile()
} }
func GetConfigFilePath() (string, error) { func GetConfigFilePath() {
// Returns the path where Viper actually found the logfile it uses. // Returns the path where Viper actually found the logfile it uses.
// //
// Useful when you want to write the configPath to logfiles, stdout, etc. // Useful when you want to write the configPath to logfiles, stdout, etc.
// Comes in handy during debugging or when running in production environments. // Comes in handy during debugging or when running in production environments.
cf, err := v.getConfigFile() return v.getConfigFile()
return cf, err
} }
func (v *Viper) searchInPath(in string) (filename string) { func (v *Viper) searchInPath(in string) (filename string) {