All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.twisterrob.gradle.quality.gather.NoOpLogger.kt Maven / Gradle / Ivy

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