bito-code-review[bot] commented on PR #15694: URL: https://github.com/apache/grails-core/pull/15694#issuecomment-4602701563
<!-- Bito Reply --> The change explicitly sets `<withJansi>false</withJansi>` in the `logback-spring.xml` template, removing the previous logic that conditionally enabled Jansi based on the operating system. This modification is intended to prevent issues with console logging after a Spring Boot DevTools restart, as noted in the added test case in `LogbackSpec.groovy`. **grails-forge/grails-forge-core/src/main/java/org/grails/forge/feature/logging/template/logback.rocker.raw** ``` <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> - <withJansi>@jansi</withJansi> + <withJansi>false</withJansi> ``` -- 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]
