com.applovin.sdk.AppLovinLogger |
This is an interface for a logger used by the AppLovin SDK.
Please note: This class is for internal use only.
Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | SDK_TAG | This is a tag that is used for all AppLovin SDK log message. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract void |
d(String source, String message)
Log a debug message.
| ||||||||||
abstract void |
e(String source, String message)
Log an error.
| ||||||||||
abstract void |
e(String source, String message, Throwable error)
Log an error.
| ||||||||||
abstract void |
i(String source, String message)
Log an information message.
| ||||||||||
abstract void |
userError(String source, String message, Throwable error)
Log an error that was produced by a user.
| ||||||||||
abstract void |
userError(String source, String message)
Log an error that was produced by a user.
| ||||||||||
abstract void |
w(String source, String message, Throwable th)
Log a warning.
| ||||||||||
abstract void |
w(String source, String message)
Log a warning.
|
This is a tag that is used for all AppLovin SDK log message. Tag's value is AppLovinSdk
.
Log a debug message.
source | Message source (class name or tag). |
---|---|
message | Actual message. |
Log an error. Note that logged error will be save and later submitted to AppLovin server for further analysis.
source | Error source (class name or tag). |
---|---|
message | Error message. |
Log an error. Note that logged error will be save and later submitted to AppLovin server for further analysis.
source | Error source (class name or tag). |
---|---|
message | Error message. |
error | A throwable associated with the error. |
Log an information message.
source | Message source (class name or tag). |
---|---|
message | Actual message. |
Log an error that was produced by a user. A user in this context is someone who is integrating AppLovin SDK into an appliction.
User errors would be most likely a configuration problem or any other issue that could be resolved by developer's fix.
This message will be logged into logcat despite verbosity level.
source | Error source (class name or tag). |
---|---|
message | Error message. |
error | Exception that caused the error. |
Log an error that was produced by a user. A user in this context is someone who is integrating AppLovin SDK into an appliction.
User errors would be most likely a configuration problem or any other issue that could be resolved by developer's fix.
This message will be logged into logcat despite verbosity level.
source | Error source (class name or tag). |
---|---|
message | Error message. |
Log a warning.
source | Warning source (class name or tag). |
---|---|
message | Actual warning. |
th | A throwable associated with the warning. |
Log a warning.
source | Warning source (class name or tag). |
---|---|
message | Actual warning. |