DebugEvent (autotransform.event.debug)

The DebugEvent is a simple, generic event used for logging debug information to the console. This information is not expected to be logged to long term storage and is used when debugging usage in production environments. More specific events should be created for long term storage cases.

class autotransform.event.debug.DebugEvent(data: TData)

Bases: Event[DebugEventData]

A simple, generic debugging event used to log debug information to the console.

static get_logging_level() LoggingLevel

The logging level for events of this type.

Returns:

The logging detail required to log this event.

Return type:

LoggingLevel

static get_type() EventType

Used to represent the type of Event, output to logs.

Returns:

The unique type associated with this Event.

Return type:

EventType

class autotransform.event.debug.DebugEventData

Bases: TypedDict

The data for a DebugEvent. Contains the information that will be logged when the event is triggered.

message: str