/** * Disables logger, no logs will be passed to LogCat, all log methods will do nothing * * @deprecated Use {@link #writeLogs(boolean) writeLogs(false)} instead */ @Deprecated public static void disableLogging() { writeLogs(false); }
/** * Enables logger (if {@link #disableLogging()} was called before) * * @deprecated Use {@link #writeLogs(boolean) writeLogs(true)} instead */ @Deprecated public static void enableLogging() { writeLogs(true); }