w
When overridden, this should extend a logging function
Send logcat a warning message that indicates depreciated features or risky app behaviour
Parameters
tag
typically the name of the parent class.
message
whatever string of information you'd like to pass.
class RandomClass() {
val tag = "RandomClass"
fun test() {
Log.w(tag, "it works!")
}
}Content copied to clipboard