net.twisterrob.gradle.quality.gather.NoOpLogger.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twister-quality Show documentation
Show all versions of twister-quality Show documentation
All quality plugins bundled in one.
The newest version!
package net.twisterrob.gradle.quality.gather
import se.bjurr.violations.lib.ViolationsLogger
import java.util.logging.Level
object NoOpLogger : ViolationsLogger {
override fun log(level: Level?, string: String?) {
// Don't log anything.
}
override fun log(level: Level?, string: String?, t: Throwable?) {
// Don't log anything.
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy