
com.github.croesch.logging.QuietLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of crhcomponents Show documentation
Show all versions of crhcomponents Show documentation
Provides some useful components for small Java projects.
package com.github.croesch.logging;
/**
* This is a very dumb implementation of a logger. It does only catch the messages and will not give any output.
*
* @author croesch
* @since Date: Jul 6, 2011
*/
final class QuietLogger implements Logger {
@Override
public void printThrowable(final Throwable t) {
// do nothing, just be quiet
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy