File

src/lib/log-message.model.ts

Description

Log message.

Index

Properties

Properties

level
level: string
Type : string

Log level.

logger
logger: string
Type : string

Name of the logger.

message
message: string[]
Type : string[]

Message.

methodName
methodName: string
Type : string

Method, in which the message was written.

timeStamp
timeStamp: Date
Type : Date

Time when the log was written.

export interface LogMessage {
	/**
	 * Time when the log was written.
	 */
	timeStamp: Date;

	/**
	 * Log level.
	 */
	level: string;

	/**
	 * Name of the logger.
	 */
	logger: string;

	/**
	 * Method, in which the message was written.
	 */
	methodName: string;

	/**
	 * Message.
	 */
	message: string[];
}

results matching ""

    No results matching ""