From f75ee17d6320483477a41dbadce4e04a737c1052 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Fri, 9 Jul 2021 13:27:23 +0200 Subject: [PATCH] Config: Log user config path when loading --- Modules.Config/ConfigManager.vb | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules.Config/ConfigManager.vb b/Modules.Config/ConfigManager.vb index fb74097d..88142873 100644 --- a/Modules.Config/ConfigManager.vb +++ b/Modules.Config/ConfigManager.vb @@ -274,6 +274,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) ' if user config exists If Not IsNothing(oUserConfig) Then