Back to project page android-filelogger.
The source code is released under:
Apache License
If you think the Android project android-filelogger listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.levelup.logutils; //w w w . java 2 s . c o m import java.io.File; public interface LogCollecting { /** * Triggered when the log are merged * <p> might be called outside of the UI thread * * @param path the file containing the collected data * @param mimeType the MIME type of the file, or null if unknown */ public void onLogCollected(File path, String mimeType); /** * Triggered when if the collected log is empty * <p> might be called outside of the UI thread */ public void onEmptyLogCollected(); /** * Triggered when the collecting has failed * <p> might be called outside of the UI thread */ public void onLogCollectingError(String reason); }