it.sephiroth.android.library.asm.commons.AndroidLogLevel.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asm-commons Show documentation
Show all versions of asm-commons Show documentation
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);
}