FTCLogger

class FTCLogger(tag: String) : Logger

A general-purpose Logger used when running on the robot.

This emits log messages to the Android Logger (see android.util.Log), the BotsBurgh folder on the file system, and the driver station telemetry. The driver station telemetry is filtered based on the log level.

See also

Constructors

Link copied to clipboard
constructor(tag: String)

Types

Link copied to clipboard
object Companion

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.