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

com.github.czyzby.kiwi.log.impl.DebugLogger Maven / Gradle / Ivy

There is a newer version: 1.9.1.9.6
Show newest version
package com.github.czyzby.kiwi.log.impl;

import com.github.czyzby.kiwi.log.LoggerService;

/** Logs normally ignored exceptions as debug exceptions.
 *
 * @author MJ */
public class DebugLogger extends DefaultLogger {
    public DebugLogger(final LoggerService service, final Class forClass) {
        super(service, forClass);
    }

    @Override
    public void ignore(final Throwable exception) {
        debug(exception, "Ignored exception.");
    }

    @Override
    public void ignore(final Throwable exception, final String message) {
        debug(exception, message);
    }

    @Override
    public void ignore(final Throwable exception, final String message, final Object... arguments) {
        debug(exception, message, arguments);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy