public static void out(String tag, final String text) { final String logTag = new StringBuilder(PREFIX).append(tag).toString(); if (StaticParams.DEBUG_MODE) { Log.i(logTag, text); } DebugController.handle(logTag, text); }
/** * Creates new `LoopMeInterstitial` object with the given appKey * * @param context - application context * @param appKey - your app key * @throws IllegalArgumentException if any of parameters is null */ LoopMeInterstitial(Context context, String appKey) { super(context, appKey); Logging.out(LOG_TAG, "Start creating interstitial with app key: " + appKey); mViewController = new ViewController(this); Utils.init(context); DebugController.init(context); }