log
protected open override fun log(level: Log.Level, domain: String?, tag: String, msg: String?, t: Throwable?): Boolean(source)
Log something.
Guarantees:
domain will be
null, or in compliance with parameters specified by Logger.checkDomain.tag will be in compliance with parameters specified by Logger.checkTag.
msg will be
nullor a non-empty value, never empty.isLoggable will have returned
trueimmediately prior to this function being called by Root.
Return
true if a log was generated, false otherwise.