Skip to content

Commit 1ff73d5

Browse files
committed
Make code compile
Signed-off-by: Dmitry Sulman <[email protected]>
1 parent 71487be commit 1ff73d5

File tree

1 file changed

+1
-1
lines changed
  • logback-access-reactor-netty/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty

1 file changed

+1
-1
lines changed

logback-access-reactor-netty/src/main/kotlin/io/github/dmitrysulman/logback/access/reactor/netty/AccessLog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class AccessLog(
4141
public override fun log() {
4242
try {
4343
val accessEvent = AccessEvent(argProvider, accessContext)
44-
accessEvent.threadName = Thread.currentThread().name
44+
accessEvent.setThreadName(Thread.currentThread().name)
4545
if (accessContext.getFilterChainDecision(accessEvent) != FilterReply.DENY) {
4646
accessContext.callAppenders(accessEvent)
4747
}

0 commit comments

Comments
 (0)