1
0
mirror of https://git.teknik.io/Teknikode/Teknik.git synced 2023-08-02 14:16:22 +02:00

Fixed min log level using email level config option

This commit is contained in:
Uncled1023 2017-01-18 16:31:01 -08:00
parent 99b0f425ac
commit 7214185167

View File

@ -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
{