Interface
Logger
@ng-forge/dynamic-forms
Interface for dynamic forms logger implementations. Allows custom logging integrations (Sentry, DataDog, etc.)
Signature
interface LoggerMethods
| Name | Return Type | Description |
|---|---|---|
debug() | void | Log a debug message. Use for detailed diagnostic information during development. |
info() | void | Log an info message. Use for general operational information. |
warn() | void | Log a warning message. Use for potentially problematic situations that don't prevent operation. |
error() | void | Log an error message. Use for error conditions that may affect functionality. |
packages/dynamic-forms/src/lib/providers/features/logger/logger.interface.ts:5