com.quali.cloudshell.logger.QsLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sandbox-api Show documentation
Show all versions of sandbox-api Show documentation
CloudShell Sandbox java gateway project
The newest version!
package com.quali.cloudshell.logger;
public abstract class QsLogger {
public abstract void debug(String message);
public abstract void info(String message);
public abstract void error(String message);
}