io.odysz.module.xtable.ILogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of semantic.DA Show documentation
Show all versions of semantic.DA Show documentation
JDBC Data Access with Semantics Support
package io.odysz.module.xtable;
/**@deprecated replaced by {@link io.odysz.common.Utils}
* @author [email protected]
*
*/
public interface ILogger {
/**Logger can working in debug mode and release mode.
* If in debug mode, i(), d(), v() are disabled.
* @param isDebug
* @return this logger
*/
ILogger setDebugMode(boolean isDebug);
void e(String tag, String msg);
void w(String tag, String msg);
void i(String tag, String msg);
void d(String tag, String msg);
void v(String tag, String msg);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy