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. |
Presentationdebug(message: string, args: unknown[]): void;
|
Parameters| Name | Type | Description |
|---|
| message | string | | | args | unknown[] | |
Returnsvoid
|
error() |
|---|
Log an error message. Use for error conditions that may affect functionality. |
Presentationerror(message: string, args: unknown[]): void;
|
Parameters| Name | Type | Description |
|---|
| message | string | | | args | unknown[] | |
Returnsvoid
|
info() |
|---|
Log an info message. Use for general operational information. |
Presentationinfo(message: string, args: unknown[]): void;
|
Parameters| Name | Type | Description |
|---|
| message | string | | | args | unknown[] | |
Returnsvoid
|
warn() |
|---|
Log a warning message. Use for potentially problematic situations that don't prevent operation. |
Presentationwarn(message: string, args: unknown[]): void;
|
Parameters| Name | Type | Description |
|---|
| message | string | | | args | unknown[] | |
Returnsvoid
|