All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.com.wisetrack.sdk.LogLevel.kt Maven / Gradle / Ivy

There is a newer version: 1.5.3
Show newest version
package com.wisetrack.sdk

import android.util.Log

/**
@author hamed (@hamed-hsb)
 * @since 04th October 2021
 */

enum class LogLevel(private var androidLogLevel: Int) {
    VERBOSE(Log.VERBOSE),
    DEBUG(Log.DEBUG),
    INFO(Log.INFO),
    WARN(Log.WARN),
    ERROR(Log.ERROR),
    ASSERT(Log.ASSERT),
    SUPPRESS(8);

    fun getAndroidLogLevel(): Int {
        return androidLogLevel
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy