Appender
@codification/cutwater-logging > Appender
Interface
A destination for LoggingEvents.
beta:
Hierarchy
Appender
Implemented by
Properties
Methods
Properties
layout
● layout: Layout
Defined in Appender.ts:18
The Layout used by this appender to format LoggingEvents.
name
● name: string
Defined in Appender.ts:13
The name of this appender.
Methods
doAppend
▸ doAppend(event: LoggingEvent): void
Defined in Appender.ts:25
Append the specified LoggingEvent using the configured Layout.
Parameters:
Name | Type | Description |
---|---|---|
event | LoggingEvent | the event to be appended |
Returns: void