ppkarwasz commented on code in PR #1534:
URL: https://github.com/apache/logging-log4j2/pull/1534#discussion_r1258925933
##########
log4j-slf4j2-impl/src/main/java/org/apache/logging/slf4j/Log4jEventBuilder.java:
##########
@@ -112,7 +112,7 @@ public void log() {
.withMarker(marker)
.withThrowable(throwable);
if (logBuilder instanceof BridgeAware) {
- String fqcn = fqcnOverride != null ? fqcnOverride : FQCN;
+ String fqcn = this.fqcn != null ? this.fqcn : FQCN;
Review Comment:
`this.fqcn` can never be `null`, since calling `setCallerBoundary(null)`
makes no sense.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]