SimpleLogger

class SimpleLogger(tag: String) : Logger

A simple Logger that prints to the standard output.

In most cases you should prefer FTCLogger unless it is unavailable, such as when running unit tests.

Constructors

Link copied to clipboard
constructor(tag: String)

Functions

Link copied to clipboard
fun debug(msg: Any)

Logs a debugging message.

Link copied to clipboard
fun error(msg: Any)

Logs an error message.

Link copied to clipboard
fun info(msg: Any)

Logs an info message.

Link copied to clipboard
open override fun log(level: Level, msg: String)

Logs a message with a specific level.

Link copied to clipboard
fun warn(msg: Any)

Logs a warning message.