You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I testing my app using JMH gradle plugin.
Inside my tested app there is log.info (...) commands.
When I run JMH in gradle using ./gradlew jmh or ./gradlew -w jmh there are enormous logs writting to console output, it takes a lot time and, in the end, it failures with exception: Gradle build daemon has been stopped: JVM garbage collector thrashing and after running out of JVM memory
How can logging to console be suppressed to not affect JMH runs?
The text was updated successfully, but these errors were encountered:
vedrancu
changed the title
too many logs to console bring to out of JVM memory
too many logs to console when running JMH bring to out of JVM memory
Dec 4, 2022
The plugin itself doesn't set the log level. Whatever log framework you are using should work as long as it is configured properly (e.g logback.xml on classpath) 🤔
Hello team,
I testing my app using JMH gradle plugin.
Inside my tested app there is log.info (...) commands.
When I run JMH in gradle using
./gradlew jmh or ./gradlew -w jmh
there are enormous logs writting to console output, it takes a lot time and, in the end, it failures with exception:Gradle build daemon has been stopped: JVM garbage collector thrashing and after running out of JVM memory
How can logging to console be suppressed to not affect JMH runs?
The text was updated successfully, but these errors were encountered: