com.ats.tools.logger.levels.FullLevelLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ats-automated-testing Show documentation
Show all versions of ats-automated-testing Show documentation
Code generator library to create and execute GUI automated tests
The newest version!
package com.ats.tools.logger.levels;
import java.io.PrintStream;
public class FullLevelLogger extends WarningLevelLogger {
public FullLevelLogger(PrintStream out, String type, String level) {
super(out, type, level);
}
@Override
public void driverOutput(String value) {
out.println(logType.getDriverOutput() + value);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy