diff --git a/Modules.Config/ConfigManager.vb b/Modules.Config/ConfigManager.vb index d8092e54..5c9afb94 100644 --- a/Modules.Config/ConfigManager.vb +++ b/Modules.Config/ConfigManager.vb @@ -277,7 +277,7 @@ Public Class ConfigManager(Of T) If File.Exists(_UserConfigPath) Then Try Dim oUserConfig = ReadFromFile(_UserConfigPath) - _Logger.Info("UserConfig exists and will be used. [{0}]", _UserConfigPath) + _Logger.Debug("UserConfig exists and will be used. [{0}]", _UserConfigPath) ' if user config exists If Not IsNothing(oUserConfig) Then @@ -288,8 +288,6 @@ Public Class ConfigManager(Of T) CopyValues(oUserConfig, Config, _ExcludedAttributes) End If End If - - _Logger.Info("UserConfig exists and will be used. [{0}]", _UserConfigPath) Catch ex As Exception _Logger.Error(ex) _Logger.Warn("User config could not be loaded!")