| com.apptimize.Apptimize.LogMonitor |
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.
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| abstract void |
log(ApptimizeOptions.LogLevel logLevel, String tag, String msg, Throwable tr)
Called when Apptimize will log a message.
| ||||||||||
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.
| 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. |