public static void logd(String tag, String msg) { if (FacebookSdk.isDebugEnabled() && tag != null && msg != null) { Log.d(tag, msg); } }
public static void logd(String tag, String msg, Throwable t) { if (FacebookSdk.isDebugEnabled() && !isNullOrEmpty(tag)) { Log.d(tag, msg, t); } }
public static void logd(String tag, Exception e) { if (FacebookSdk.isDebugEnabled() && tag != null && e != null) { Log.d(tag, e.getClass().getSimpleName() + ": " + e.getMessage()); } }