-
|
Dear community, Example project: https://github.com/Treutler/rainbowgum-test Thanks in advance for any helpful suggestions. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
|
@Treutler I think the github repos you linked are private as I can't see them. |
Beta Was this translation helpful? Give feedback.
-
|
I can't see your project but you are missing this property (first one): logging.appender.console.encoder=pattern
logging.encoder.console.pattern=%d{HH:mm:ss.SSS} - %msg%nI found it rather hard to get //build.gradle
tasks.named('run') {
systemProperty 'logging.appender.console.encoder', 'pattern'
systemProperty 'logging.encoder.console.pattern', '%d{HH:mm:ss.SSS} - %msg%n'
}This is probably something we should fix though. OOB we do not use the pattern encoder for speed reasons so you need to tell the console appender to use the pattern encoder. |
Beta Was this translation helpful? Give feedback.
-
|
The argument |
Beta Was this translation helpful? Give feedback.
I can't see your project but you are missing this property (first one):
I found it rather hard to get
gradlew runto get system properties so I ask chatgpt and this is what it came up for me and works:This is probably something we should fix though. OOB we do not use the pattern encoder for speed reasons so you need to tell the console appender to use the pattern encoder.