1
0
Fork 0
mirror of https://github.com/spf13/viper synced 2025-07-25 18:52:15 +00:00

Simplifed function GetConfigFilePath()

This commit is contained in:
Fabian Knorr 2018-02-06 20:14:04 +01:00
commit e867180379

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) {