Package io.scanbot.sdk.util.log
Interface Logger
-
- All Implemented Interfaces:
public interface Logger
Writes logs
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public enum
Logger.Level
Logging level.
-
Method Summary
Modifier and Type Method Description abstract Unit
d(String tag, String message)
Writes tag and message to the log on Level.Debug abstract Unit
w(String tag, String message)
Writes tag and message to the log on Level.Warning abstract Unit
e(String tag, String message)
Writes tag and message to the log on Level.Error abstract Unit
i(String tag, String message)
Writes tag and message to the log on Level.Information abstract Unit
logException(Throwable e)
Shows log for exception abstract Unit
logMethod()
Shows log for invoked method -
-
Method Detail
-
d
abstract Unit d(String tag, String message)
Writes tag and message to the log on Level.Debug
-
w
abstract Unit w(String tag, String message)
Writes tag and message to the log on Level.Warning
-
e
abstract Unit e(String tag, String message)
Writes tag and message to the log on Level.Error
-
i
abstract Unit i(String tag, String message)
Writes tag and message to the log on Level.Information
-
logException
abstract Unit logException(Throwable e)
Shows log for exception
- Parameters:
e
-Throwable for this error
-
-
-
-