Skip to main content

QLoggerType

@quik/logging


@quik/logging / QLoggerType

Enumeration: QLoggerType

Defined in: QLoggerType.ts:4

A list with supported loggers from the application.

Enumeration Members

CONSOLE

CONSOLE: "console"

Defined in: QLoggerType.ts:10

CONSOLE Logger type.

Use this when you want to output the log in the Console using a standard format.


FILE

FILE: "file"

Defined in: QLoggerType.ts:16

FILE Logger type.

Use this when you want to output the log in a file using a standard format.


JSON

JSON: "json"

Defined in: QLoggerType.ts:22

JSON Logger type.

Use this when you want to output the log in the Console using JSON format.


JSON_FILE

JSON_FILE: "json_file"

Defined in: QLoggerType.ts:28

JSON_FILE Logger type.

Use this when you want to output the log in a file using JSON format.


NO_LOGGER

NO_LOGGER: "no_logger"

Defined in: QLoggerType.ts:34

NO_LOGGER Logger type.

Use this when you don't to log anything from the application.