v

open fun v(tag: String, message: String, arguments: Array<Any>): Int

Logs a verbose message.

Return

The number of bytes written.

Parameters

tag

the string that will ssed to identify the source of a log message. It usually identifies the class or activity where the log call occurs.

message

the message to be logged. The message may contain formatting token supported by format method.

arguments

an array of objects to be used for formatting the log message.


open fun v(tag: String, message: String, error: Throwable, arguments: Array<Any>): Int

Logs a verbose message.

Return

The number of bytes written.

Parameters

tag

the string that will ssed to identify the source of a log message. It usually identifies the class or activity where the log call occurs.

message

the message to be logged. The message may contain formatting token supported by format method.

error

the error to be logged, if any.

arguments

an array of objects to be used for formatting the log message.