Skip to content

Commit

Permalink
add CultureInfo for Turkish OS (#4880)
Browse files Browse the repository at this point in the history
* add CultureInfo for Turkish OS

added English CultureInfo to fix ToUpper function causes error on Turkish OS. "warning"->"WARNİNG"

* fix LogLevel TR char error

Co-authored-by: Aaron Stannard <aaron@petabridge.com>
yildizoglu and Aaronontheweb authored Apr 1, 2021

Verified

This commit was signed with the committer’s verified signature.
frapell Franco Pellegrini
1 parent f5cb089 commit 6748e2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Akka/Event/Logging.cs
Original file line number Diff line number Diff line change
@@ -270,7 +270,7 @@ public static LogLevel LogLevelFor(string logLevel)
{
if (!string.IsNullOrEmpty(logLevel))
{
logLevel = logLevel.ToUpper();
logLevel = logLevel.ToUpperInvariant();
}

switch (logLevel)

0 comments on commit 6748e2a

Please sign in to comment.