LogLevel enum

Logger method to which profiling output is dispatched. Each value is the literal name of the corresponding ILogger method, so the level is used as a property lookup on the logger.

Signature:

export declare enum LogLevel 

Enumeration Members

Member

Value

Description

ERROR

"error"

Dispatches to ILogger.error().

INFO

"info"

Dispatches to ILogger.info(). This is the default level.

LOG

"log"

Dispatches to ILogger.log().

WARN

"warn"

Dispatches to ILogger.warn().

Read this page as plain markdown — no HTML, no navigation. For pasting into an LLM, or for an agent to fetch.