com.github.megatronking.stringfog.plugin.utils.Log Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-plugin Show documentation
Show all versions of gradle-plugin Show documentation
A String encryption Library for Android
package com.github.megatronking.stringfog.plugin.utils;
public class Log {
private static boolean isDebug;
public static void setDebug(boolean debug) {
isDebug = debug;
}
public static void v(String msg) {
if (isDebug) {
System.out.println(msg);
}
}
public static void e(String msg) {
if (isDebug) {
System.err.println(msg);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy