From ee97acd6e9bc6041c6e9f24247c09ed3ce83b88f Mon Sep 17 00:00:00 2001 From: liuguoyang1 Date: Wed, 19 Aug 2020 18:22:25 +0800 Subject: [PATCH] delete fmt.Println --- viper.go | 1 - 1 file changed, 1 deletion(-) 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...)) }