Logging APIs
MXOLogComponent
A list of components to filter the messages the MXO SDK will log.
Enum | Description |
---|---|
any | The combination of all components listed below other than none . |
interaction | Interaction tracking log messages. |
networking | Networking log messages. |
none | Neither of the components listed above is logged. Used to opt out of logging. |
MXOLoggingConfiguration
The logging configuration object for the MXO SDK.
Property | Type | Description |
---|---|---|
logLevel | MXOLogLevel | A set of MXO log levels. |
logComponent | MXOLogComponent | A set of MXO log components. |
Create an instance using the Builder as shown below:
MXOLogLevel
A list of levels (IE severity) to filter the messages the MXO SDK will log.
Enum | Description |
---|---|
verbose | Any amount of detail might be logged. |
debug | Debug details are logged, and all the levels below. |
error | Error details are logged, and all the levels below. |
warn | Warning details are logged, and all the levels below. |
info | Info details are logged, and the level below. |
none | Neither of the levels listed above is logged. Used to opt out of logging. |