@ngworker/lumberjack
Version:
Lumberjack is a versatile Angular logging library, specifically designed to be extended and customized
16 lines (15 loc) • 414 B
TypeScript
/**
* Optional payload with custom properties for a log.
*
* This does not have to be the same for all logs.
*
* NOTE! Make sure that these properties are supported by your log drivers.
*/
export interface LumberjackLogPayload {
/**
* A custom property for a log.
*
* NOTE! Make sure that this property is supported by your log drivers.
*/
readonly [property: string]: unknown;
}