Member visibility
Filter class members by access level.
Showing members with Protected visibility and higher.
public box(
title: string,
content: string[],
level?: LoggerLevel
): voidpublic box(
title: string,
content: string[],
level?: LoggerLevel
): voidParameter:
titleTitle to display in the box
Parameter:
contentLines of content to display in the box
public initialization(
component: string,
action: "start" | "end",
level?: LoggerLevel
): voidpublic initialization(
component: string,
action: "start" | "end",
level?: LoggerLevel
): voidParameter:
componentName of the component
Parameter:
action'start' or 'end' to indicate initialization phase
public item(
text: string,
level?: LoggerLevel
): voidpublic item(
text: string,
level?: LoggerLevel
): voidParameter:
textThe text to log
public list(
items: string[],
heading?: string,
level?: LoggerLevel
): voidpublic list(
items: string[],
heading?: string,
level?: LoggerLevel
): voidParameter:
itemsArray of items to log as a list
Parameter:
headingOptional heading to display above the list
public progress(
current: number,
total: number,
item?: string,
level?: LoggerLevel
): voidpublic progress(
current: number,
total: number,
item?: string,
level?: LoggerLevel
): voidParameter:
currentCurrent progress count
Parameter:
totalTotal count
Parameter:
itemOptional item label to append
public registration(
name: string,
from: string,
type?: string,
level?: LoggerLevel
): voidpublic registration(
name: string,
from: string,
type?: string,
level?: LoggerLevel
): voidParameter:
nameName of the component being registered
Parameter:
fromFile path the component is from
Parameter:
typeOptional type label (e.g., 'middleware', 'handler')