com.crashnote.logback.CrashAppender Maven / Gradle / Ivy
/**
* Copyright (C) 2011 - 101loops.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.crashnote.logback;
import ch.qos.logback.classic.*;
import ch.qos.logback.classic.Logger;
import ch.qos.logback.classic.spi.ILoggingEvent;
import ch.qos.logback.core.AppenderBase;
import ch.qos.logback.core.filter.Filter;
import ch.qos.logback.core.spi.FilterReply;
import com.crashnote.ICrashAppender;
import com.crashnote.core.model.types.LogLevel;
import com.crashnote.logback.impl.LogbackEvt;
import com.crashnote.logger.config.*;
import com.crashnote.logger.report.LoggerReporter;
import org.slf4j.*;
/**
* Appender that writes logs from 'Logback' to the cloud
*/
public class CrashAppender
extends AppenderBase implements ICrashAppender {
private Level threshold;
private LoggerReporter reporter;
// config
private LoggerConfig config;
private final LoggerConfigFactory configFactory;
// SETUP ======================================================================================
public CrashAppender() {
this(new LoggerConfigFactory());
}
public CrashAppender(final LoggerConfigFactory configFactory) {
this.configFactory = configFactory;
addFilter(new Filter() {
@Override
public FilterReply decide(final ILoggingEvent event) {
final boolean res =
event.getLevel().isGreaterOrEqual(threshold) &&
getReporter().doAcceptLog(event.getLoggerName());
return res ? FilterReply.ACCEPT : FilterReply.DENY;
}
});
}
public CrashAppender(final LoggerConfig config, final LoggerReporter reporter) {
this();
this.config = config;
this.reporter = reporter;
}
// INTERFACE ==================================================================================
@Override
public void start() {
if (!started) {
setLogLevel(getConfig().getLogLevel());
getReporter().start();
super.start();
}
}
@Override
public void stop() {
if (started) {
getReporter().stop();
super.stop();
}
}
public void setLogLevel(final LogLevel lvl) {
if (lvl == LogLevel.DEBUG)
setThreshold(Level.DEBUG);
else if (lvl == LogLevel.INFO)
setThreshold(Level.INFO);
else if (lvl == LogLevel.WARN)
setThreshold(Level.WARN);
else
setThreshold(Level.ERROR);
}
public static Logger getTargetLogger(final Class clazz) {
return (Logger) LoggerFactory.getLogger(clazz);
}
// SHARED =====================================================================================
@Override
protected void append(final ILoggingEvent event) {
if (started)
getReporter().reportLog(new LogbackEvt(event, MDC.getCopyOfContextMap()));
}
// INTERNALS ==================================================================================
private LoggerConfig getConfig() {
if (config == null) config = (LoggerConfig) configFactory.get();
return config;
}
private LoggerReporter getReporter() {
if (reporter == null) reporter = getConfig().getReporter();
return reporter;
}
// PARAMETERS =================================================================================
public void setPort(final String port) {
configFactory.setPort(port);
}
public void setHost(final String host) {
configFactory.setHost(host);
}
public void setKey(final String key) {
configFactory.setKey(key);
}
public void setEnabled(final String enabled) {
configFactory.setEnabled(enabled);
}
public void setSslPort(final String sslPort) {
configFactory.setSslPort(sslPort);
}
public void setSecure(final String secure) {
configFactory.setSecure(secure);
}
public void setThreshold(final Level l) {
threshold = l;
}
public void setSync(final String on) {
configFactory.setSync(on);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy