LoggerConfig

data class LoggerConfig(    var isLogging: Boolean,     var isDebugging: Boolean,     var isDashboardEnabled: Boolean,     var isTelemetryEnabled: Boolean)

Configuration for the Logger. Includes

Parameters

isLogging

logging any messages

isDebugging

show debug logs

isDashboardEnabled

send data packets to FTCDashboard

isTelemetryEnabled

send telemetry to driver station

Constructors

Link copied to clipboard
fun LoggerConfig(    isLogging: Boolean,     isDebugging: Boolean,     isDashboardEnabled: Boolean,     isTelemetryEnabled: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
var isDashboardEnabled: Boolean
Link copied to clipboard
var isDebugging: Boolean
Link copied to clipboard
var isLogging: Boolean
Link copied to clipboard
var isTelemetryEnabled: Boolean