diff --git a/viper.go b/viper.go index 7af20cd..9ef0674 100644 --- a/viper.go +++ b/viper.go @@ -896,7 +896,6 @@ func Unmarshal(rawVal interface{}, opts ...DecoderConfigOption) error { return v.Unmarshal(rawVal, opts...) } func (v *Viper) Unmarshal(rawVal interface{}, opts ...DecoderConfigOption) error { - fmt.Println(v.AllSettings()) return decode(v.AllSettings(), defaultDecoderConfig(rawVal, opts...)) }