com.fastchar.slf4j.core.FastExceptionProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastchar-slf4j Show documentation
Show all versions of fastchar-slf4j Show documentation
FastChar-SLF4J is a FastChar plugin.
The newest version!
package com.fastchar.slf4j.core;
import com.fastchar.core.FastChar;
import com.fastchar.interfaces.IFastException;
public class FastExceptionProvider implements IFastException {
@Override
public boolean onPrintException(Throwable throwable) {
if (!FastChar.getConstant().isWebStarted()) {
return false;
}
if (FastChar.getConstant().isWebStopped()) {
return false;
}
FastChar.getLogger().error(this.getClass(), throwable);
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy