Logger.d(" Message ");
단지 사용할 때 Debug 인지 아닌지를 static 으로 선언해주시면 됩니다.
public class AppConfig {
private static boolean isDebuggable;
public void setDebuggable(boolean debug) {
isDebuggable = debug;
}
public static boolean isDebuggable() {
return isDebuggable;
}
}