
com.path.android.jobqueue.log.CustomLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-priority-jobqueue Show documentation
Show all versions of android-priority-jobqueue Show documentation
a Job Queue specifically written for Android to easily schedule jobs (tasks) that run in the background, improving UX and application stability.
package com.path.android.jobqueue.log;
/**
* You can provide your own logger implementation to {@link com.path.android.jobqueue.JobManager}
* it is very similar to Roboguice's logger
*/
public interface CustomLogger {
/**
* JobManager may call this before logging sth that is (relatively) expensive to calculate
* @return
*/
public boolean isDebugEnabled();
public void d(String text, Object... args);
public void e(Throwable t, String text, Object... args);
public void e(String text, Object... args);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy