You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 29, 2023. It is now read-only.
While reading the code handling MDC values I came across the following snipped in LogbackLogEvent v1.12.0 and was wondering if this is working as intended or whether it should be checking mdcValue instead of mdcName
for (StringmdcName : matchingMdcNames) {
StringmdcValue = getMdcValue(mdcName);
if (mdcName != null) {
result.setValue(mdcName, mdcValue);
}
}
This is not causing any issues for me at the moment, I'm just curios :)