-
public interface LogWriterBasic interface for log writers
-
-
Method Summary
-
-
Method Detail
-
write
abstract Unit write(Integer logLevel, String tag, String message, Throwable throwable)
Method should write log to underlying storage/console. <br></br> message and throwable can't be null simultaneously.
- Parameters:
logLevel- logLevel from Log.VERBOSE to Log.ASSERTtag- nonnull tag, usually class name.message- nullable message to logthrowable- nullable throwable to log
-
-
-
-