All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.jodamob.android.logging.RemoteReporter Maven / Gradle / Ivy

package de.jodamob.android.logging;

/**
 * implement this for your server side tracing tool of choice
 */
public interface RemoteReporter {
    
    /**
     * will be called for every throwable that is logged
     */
    void reportLoggedException(String message, Throwable tr);

    /**
     * will be called from Log.wtf
     */
    void reportWtfException(Throwable e);

    /**
     * will be called from Log.wtf
     */
    void reportWtfException(String message, Throwable e);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy