SDKLogger (API Reference)
Package com.here.sdk.core.engine
Class SDKLogger
java.lang.Object
com.here.NativeBase
com.here.sdk.core.engine.SDKLogger
Logging interface for Android/iOS platforms.
These logs are under management of LogControl and should be used instead of platform-specific logging functions.
-
Method Summary
Modifier and TypeMethodDescriptionstatic voidconvenient function to print a message with log level ERROR and tag.static voidconvenient function to print a message with log level FATAL and tag.static voidconvenient function to print a message with log level INFO and tag.static voidstatic voidconvenient function to print a message with log level WARNING and tag.
-
Method Details
-
log
- Parameters:
level-The severity of the log message.
tag-The log tag.
message-The log message.
-
info
convenient function to print a message with log level INFO and tag.
- Parameters:
tag-The log tag.
message-The log message.
-
warn
convenient function to print a message with log level WARNING and tag.
- Parameters:
tag-The log tag.
message-The log message.
-
error
convenient function to print a message with log level ERROR and tag.
- Parameters:
tag-The log tag.
message-The log message.
-
fatal
convenient function to print a message with log level FATAL and tag.
- Parameters:
tag-The log tag.
message-The log message.
-