From d2099f531569a41d6f3d5d763d2c1f3cfab8de63 Mon Sep 17 00:00:00 2001 From: Jonathan Jenne Date: Fri, 9 Jul 2021 12:44:29 +0200 Subject: [PATCH] Config: log about app config in info log --- Modules.Config/ConfigManager.vb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules.Config/ConfigManager.vb b/Modules.Config/ConfigManager.vb index e0f9bb7d..fb74097d 100644 --- a/Modules.Config/ConfigManager.vb +++ b/Modules.Config/ConfigManager.vb @@ -123,7 +123,7 @@ Public Class ConfigManager(Of T) End If If ApplicationStartupPath <> String.Empty Then - _Logger.Debug($"AppConfig is being used: [{ApplicationStartupPath}]") + _Logger.Info($"AppConfig is being used: [{ApplicationStartupPath}]") _AppConfigPath = Path.Combine(ApplicationStartupPath, APP_CONFIG_NAME) End If