Android Open Source - android-filelogger Log Collecting






From Project

Back to project page android-filelogger.

License

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.

Java Source Code

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);

}




Java Source Code List

com.levelup.logutils.FLogLevel.java
com.levelup.logutils.FLog.java
com.levelup.logutils.FLoggerTagged.java
com.levelup.logutils.FLoggerWrapTagged.java
com.levelup.logutils.FLogger.java
com.levelup.logutils.FileLogger.java
com.levelup.logutils.LogCollecting.java
com.levelup.logutils.LogCollectorEmail.java
com.levelup.logutils.sample.MainActivity.java