BeaconLogger
BeaconRegion
ProximityNotificationCustomizationOptions
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Package: com.salesforce.marketingcloud.proximity
SDK Version: 11.0.0
Platform: Android JVM
BeaconLogger is a class that extends the Logger interface, providing logging functionality for beacon-related operations in the Salesforce Marketing Cloud SDK.
1class BeaconLogger : Logger1constructor()Default constructor for creating a BeaconLogger instance.
1open fun d(
2 tag: String,
3 message: String,
4 objects: Array<Any>
5)Logs a debug message with the specified tag and message format.
Parameters:
tag: String - The tag for the log entrymessage: String - The message to logobjects: Array1open fun d(
2 throwable: Throwable,
3 tag: String,
4 message: String,
5 objects: Array<Any>
6)Logs a debug message with an associated throwable.
Parameters:
throwable: Throwable - The exception or error to logtag: String - The tag for the log entrymessage: String - The message to logobjects: Array1open fun e(
2 tag: String,
3 message: String,
4 objects: Array<Any>
5)Logs an error message.
Parameters:
tag: String - The tag for the log entrymessage: String - The error messageobjects: Array1open fun e(
2 throwable: Throwable,
3 tag: String,
4 message: String,
5 objects: Array<Any>
6)Logs an error message with an associated throwable.
Parameters:
throwable: Throwable - The exception or errortag: String - The tag for the log entrymessage: String - The error messageobjects: Array1open fun i(
2 tag: String,
3 message: String,
4 objects: Array<Any>
5)Logs an informational message.
Parameters:
tag: String - The tag for the log entrymessage: String - The info messageobjects: Array1open fun i(
2 throwable: Throwable,
3 tag: String,
4 message: String,
5 objects: Array<Any>
6)Logs an informational message with an associated throwable.
Parameters:
throwable: Throwable - The exception or errortag: String - The tag for the log entrymessage: String - The info messageobjects: Array1open fun v(
2 tag: String,
3 message: String,
4 objects: Array<Any>
5)Logs a verbose message.
Parameters:
tag: String - The tag for the log entrymessage: String - The verbose messageobjects: Array1open fun v(
2 throwable: Throwable,
3 tag: String,
4 message: String,
5 objects: Array<Any>
6)Logs a verbose message with an associated throwable.
Parameters:
throwable: Throwable - The exception or errortag: String - The tag for the log entrymessage: String - The verbose messageobjects: Array1open fun w(
2 tag: String,
3 message: String,
4 objects: Array<Any>
5)Logs a warning message.
Parameters:
tag: String - The tag for the log entrymessage: String - The warning messageobjects: Array1open fun w(
2 throwable: Throwable,
3 tag: String,
4 message: String,
5 objects: Array<Any>
6)Logs a warning message with an associated throwable.
Parameters:
throwable: Throwable - The exception or errortag: String - The tag for the log entrymessage: String - The warning messageobjects: Array