e

abstract fun e(tag: String, message: String)

When overridden, this should extend a logging function

Send logcat an error message that aids the developer in troubleshooting

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.e(tag, "it did not work!")
}
}