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

com.ats.tools.logger.levels.WarningLevelLogger Maven / Gradle / Ivy

The newest version!
package com.ats.tools.logger.levels;

import java.io.PrintStream;

public class WarningLevelLogger extends InfoLevelLogger {

	public WarningLevelLogger(PrintStream out, String type, String level) {
		super(out, type, level);
	}

	@Override
	public void warning(String message) {
		printWarning(message);
	}

	@Override
	public void driverOutput(String value) {
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy