From 721418516712bf44e79467ba7ce0ce5b74e4f3e6 Mon Sep 17 00:00:00 2001 From: Uncled1023 Date: Wed, 18 Jan 2017 16:31:01 -0800 Subject: [PATCH] Fixed min log level using email level config option --- Utilities/Logging/Logger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/Logging/Logger.cs b/Utilities/Logging/Logger.cs index 6e69312..05ca37c 100644 --- a/Utilities/Logging/Logger.cs +++ b/Utilities/Logging/Logger.cs @@ -54,7 +54,7 @@ namespace Teknik.Logging { // Do we want to write a log for this level? (Default to Error) LogLevel minLogLevel = LogLevel.Error; - Enum.TryParse(config.LoggingConfig.EmailLevel, out minLogLevel); + Enum.TryParse(config.LoggingConfig.LogLevel, out minLogLevel); try {