Skip to main content
Version: 2.2.x

ILogger

This is a interface / script used by the server to log data to the console.

export interface ILogger {
log: (text: string) => void;
warn: (text: string) => void;
error: (text: string) => void;
}

Info on enabling the built-in Logger: Configuring