Default INotificationAdapter that logs to the console. Used when no adapter has been registered, so the runtime never silently swallows messages.
info
success
console.log
warning
console.warn
error
console.error
Replace with a UI-backed adapter at host bootstrap for production use.
Surface a notification to the user.
Severity of the notification.
Human-readable text to display.
Optional
Optional duration in milliseconds. When omitted, the host decides (typically 5 seconds for non-error, longer for errors).
Default INotificationAdapter that logs to the console. Used when no adapter has been registered, so the runtime never silently swallows messages.
infoandsuccess→console.logwarning→console.warnerror→console.errorReplace with a UI-backed adapter at host bootstrap for production use.