Skip to content

Instantly share code, notes, and snippets.

@cp-hardik-p
Last active September 30, 2022 12:14
Show Gist options
  • Save cp-hardik-p/88bbc3a1a14153edbe39bb5fb4899df9 to your computer and use it in GitHub Desktop.
Save cp-hardik-p/88bbc3a1a14153edbe39bb5fb4899df9 to your computer and use it in GitHub Desktop.
private fun getPriorityString(priority: Int): String {
return when (priority) {
Log.VERBOSE -> "VERBOSE"
Log.DEBUG -> "DEBUG"
Log.INFO -> "INFO"
Log.WARN -> "WARN"
Log.ERROR -> "ERROR"
Log.ASSERT -> "ASSERT"
else -> ""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment