public static interface

Apptimize.LogMonitor

com.apptimize.Apptimize.LogMonitor

Class Overview

Interface definition for capturing Apptimize logs. Methods are called when Apptimize will log a message. They could be called on any thread. These methods *must not* call back into Apptimize. They should return as quickly as possible.

Summary

Public Methods
abstract void log(ApptimizeOptions.LogLevel logLevel, String tag, String msg, Throwable tr)
Called when Apptimize will log a message.

Public Methods

public abstract void log (ApptimizeOptions.LogLevel logLevel, String tag, String msg, Throwable tr)

Called when Apptimize will log a message. This method could be called on any thread. This method *must not* call back into Apptimize. It should return as quickly as possible.

Parameters
logLevel The ApptimizeOptions.LogLevel logLevel of the event being logged.
tag The String tag for this event.
msg The String message that is being logged.
tr An optional Throwable representing an exception to log.