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

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

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


/**
 * This data sink prints measurement data to std out.
 *
 * @author arno
 */
public class AStdErrDataSink extends ALoggingDataSink {
    @Override protected void log(String s) {
        System.err.println(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy