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

it.sephiroth.android.library.asm.commons.AndroidLogLevel.kt Maven / Gradle / Ivy

Go to download

Android gradle plugin which inject at compile time method logging (initially forked from Hunter-Debug)

The newest version!
package it.sephiroth.android.library.asm.commons

import java.io.Serializable

enum class AndroidLogLevel(val value: Int) : Serializable {
    VERBOSE(2),
    DEBUG(3),
    INFO(4),
    WARN(5),
    ERROR(6),
    ASSERT(7);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy