public interface

ServiceLoggingSink

com.salesforce.android.service.common.utilities.logging.ServiceLoggingSink

Class Overview

Interface for the logging sink, which is the class that consumes log messages after they have been formatted and filtered.

Summary

Public Methods
abstract void handleMessage(int level, String tag, String message)
Handle a logged message.

Public Methods

public abstract void handleMessage (int level, String tag, String message)

Handle a logged message.

Parameters
level The logging level that this message was logged at. Note that logs are filtered by level prior to being passed to the sink, so this value will only ever be higher or equal to getLogLevel().
tag The tag used when logging this message.
message The formatted message that was logged.