LogLevel

@Retention(value = SOURCE)
annotation class LogLevel

Supported Log levels

Author

Umang Chamaria

Properties

Link copied to clipboard
val DEBUG: Int = 4
Debug logs from the SDK would be printed.
Link copied to clipboard
val ERROR: Int = 1
Error logs from the SDK would be printed.
Link copied to clipboard
val INFO: Int = 3
Info logs from the SDK would be printed.
Link copied to clipboard
val NO_LOG: Int = 0
No logs from the SDK would be printed.
Link copied to clipboard
val VERBOSE: Int = 5
Verbose logs from the SDK would be printed.
Link copied to clipboard
val WARN: Int = 2
Warning logs from the SDK would be printed.

Functions

Link copied to clipboard
abstract fun annotationType(): Class<out Annotation>
Link copied to clipboard
abstract fun equals(p: Any): Boolean
Link copied to clipboard
abstract fun hashCode(): Int
Link copied to clipboard
abstract fun toString(): String