mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
fix: ignore case for appdebug {LogLevel}
This commit is contained in:
parent
a4de9f2241
commit
185410b802
1 changed files with 1 additions and 1 deletions
|
|
@ -353,7 +353,7 @@ namespace PepperDash.Core
|
|||
return;
|
||||
}
|
||||
|
||||
if(Enum.TryParse<LogEventLevel>(levelString, out var levelEnum))
|
||||
if(Enum.TryParse<LogEventLevel>(levelString, true, out var levelEnum))
|
||||
{
|
||||
SetDebugLevel(levelEnum);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue