Skip to content

Commit 836a9cd

Browse files
JAVA-37598 | rollback
1 parent f3c67af commit 836a9cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-reactive-kotlin/src/main/kotlin/com/baeldung/logfilter/decorator/LoggingRequestDecorator.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class LoggingRequestDecorator internal constructor(log: Logger, delegate: Server
2727
val method = Optional.ofNullable(delegate.method).orElse(HttpMethod.GET).name()
2828
val headers = delegate.headers.asString()
2929
log.debug(
30-
"{} {} {}", method, path + (if (StringUtils.hasText(query)) "?$query" else ""), headers
30+
"{} {}\n {}", method, path + (if (StringUtils.hasText(query)) "?$query" else ""), headers
3131
)
3232
body = super.getBody().doOnNext { buffer: DataBuffer ->
3333
val bodyStream = ByteArrayOutputStream()

0 commit comments

Comments
 (0)