dynamic-forms / Interface

DynamicFormLogger

Interface for dynamic forms logger implementations. Allows custom logging integrations (Sentry, DataDog, etc.)

Methods

debug()

Log a debug message. Use for detailed diagnostic information during development.

Presentation
debug(message: string, args: unknown[]): void;
Parameters
NameTypeDescription
message
string
args
unknown[]
Returns
void

error()

Log an error message. Use for error conditions that may affect functionality.

Presentation
error(message: string, args: unknown[]): void;
Parameters
NameTypeDescription
message
string
args
unknown[]
Returns
void

info()

Log an info message. Use for general operational information.

Presentation
info(message: string, args: unknown[]): void;
Parameters
NameTypeDescription
message
string
args
unknown[]
Returns
void

warn()

Log a warning message. Use for potentially problematic situations that don't prevent operation.

Presentation
warn(message: string, args: unknown[]): void;
Parameters
NameTypeDescription
message
string
args
unknown[]
Returns
void