Replies: 1 comment 1 reply
-
Hi! Can it be that logger is not configured for specific test class? Or, to put it another way, if you add this test to one of those other tests you have, will logging stop working there too? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I tried to add some logs in the tests that parsing the csv file. There is an interesting issue I found. My project tech stack is a Spring Boot/R2dbc/Kotlin Coroutinnes, by default I used sfl4j API and Logback in the background.
In the unit tests for parsing csv using DataFrame, the
log.debug
does not print the logging stack at all, butprint
works well.In other tests, such my Controller, Repository etc, that does not contain the DataFrame part, the logging is working well.
I am not sure what is root cause of this issue.
Beta Was this translation helpful? Give feedback.
All reactions