com.stackmob.sdkapi
Interface LoggerService


public interface LoggerService

The logger service.


Method Summary
 void debug(String msg)
          Log a message at the DEBUG level.
 void debug(String msg, Throwable t)
          Log a message at the DEBUG level.
 void error(String msg)
          Log a message at the ERROR level.
 void error(String msg, Throwable t)
          Log a message at the ERROR level.
 void info(String msg)
          Log a message at the INFO level.
 void info(String msg, Throwable t)
          Log a message at the INFO level.
 void trace(String msg)
          Log a message at the TRACE level.
 void trace(String msg, Throwable t)
          Log a message at the TRACE level.
 void warn(String msg)
          Log a message at the WARN level.
 void warn(String msg, Throwable t)
          Log a message at the WARN level.
 

Method Detail

trace

void trace(String msg)
Log a message at the TRACE level.

Parameters:
msg - the message to be logged

trace

void trace(String msg,
           Throwable t)
Log a message at the TRACE level.

Parameters:
msg - the message to be logged
t - the throwable to be logged

debug

void debug(String msg)
Log a message at the DEBUG level.

Parameters:
msg - the message to be logged

debug

void debug(String msg,
           Throwable t)
Log a message at the DEBUG level.

Parameters:
msg - the message to be logged
t - the throwable to be logged

info

void info(String msg)
Log a message at the INFO level.

Parameters:
msg - the message to be logged

info

void info(String msg,
          Throwable t)
Log a message at the INFO level.

Parameters:
msg - the message to be logged
t - the throwable to be logged

warn

void warn(String msg)
Log a message at the WARN level.

Parameters:
msg - the message to be logged

warn

void warn(String msg,
          Throwable t)
Log a message at the WARN level.

Parameters:
msg - the message to be logged
t - the throwable to be logged

error

void error(String msg)
Log a message at the ERROR level.

Parameters:
msg - the message to be logged

error

void error(String msg,
           Throwable t)
Log a message at the ERROR level.

Parameters:
msg - the message to be logged
t - the throwable to be logged


Copyright © 2012 StackMob. All Rights Reserved.