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

com.ajjpj.asysmon.datasink.log.ALog4JDataSink Maven / Gradle / Ivy

There is a newer version: 1.0-pre28
Show newest version
package com.ajjpj.asysmon.datasink.log;

import org.apache.log4j.Logger;

/**
 * @author arno
 */
public class ALog4JDataSink extends ALoggingDataSink {
    private static final Logger log = Logger.getLogger(ALog4JDataSink.class);

    @Override protected void log(String s) {
        log.debug(s);
    }

    @Override protected boolean isLoggingEnabled() {
        return log.isDebugEnabled();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy