public interface ILoggerCallback
| Modifier and Type | Method and Description |
|---|---|
void |
log(java.lang.String tag,
Logger.LogLevel logLevel,
java.lang.String message,
boolean containsPII)
Interface method for apps to hand off each log message as it's generated.
|
void log(java.lang.String tag,
Logger.LogLevel logLevel,
java.lang.String message,
boolean containsPII)
tag - The TAG for the log message. The sdk send the component name (the class where the
log is generated).logLevel - The Logger.LogLevel for the generated message.message - The detailed message. Will not contain any PII info.containsPII - True if the log message contains PII, false otherwise. If enablePII is not set
on the Logger,