TrackerConfig

data class TrackerConfig(val enabled: Boolean = true, val maxEventsPerContext: Int = 1000, val autoSave: Boolean = false, val stackTraceDepth: Int = 4)

Configuration for the DevTracker.

Constructors

Link copied to clipboard
constructor(enabled: Boolean = true, maxEventsPerContext: Int = 1000, autoSave: Boolean = false, stackTraceDepth: Int = 4)

Properties

Link copied to clipboard

Whether to auto-save after each event.

Link copied to clipboard

Whether tracking is enabled.

Link copied to clipboard

Maximum events to store per context (0 = unlimited).

Link copied to clipboard

Depth to search in stack trace for caller detection.