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

io.odysz.module.xtable.ILogger Maven / Gradle / Ivy

There is a newer version: 1.5.3
Show newest version
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