Skip to content

Commit

Permalink
Fix LTTng config environment variable parser (dotnet#326)
Browse files Browse the repository at this point in the history
  • Loading branch information
sywhang authored Nov 27, 2019
1 parent a647b0d commit a7cae06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/src/inc/eventtracebase.h
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ class XplatEventLoggerConfiguration
_enabledKeywords = ParseEnabledKeywordsMask(keywordsComponent);

auto levelComponent = GetNextComponentString(keywordsComponent.End + 1);
_level = ParseEnabledKeywordsMask(levelComponent);
_level = ParseLevel(levelComponent);
_isValid = true;
}

Expand Down

0 comments on commit a7cae06

Please sign in to comment.