ConsoleLogger
Defined in: packages/hoppity/src/consoleLogger.ts:11
Default console-based logger implementation. Provides a simple logging interface that maps to console methods.
ConsoleLogger
Implements
Section titled “Implements”Implements
Section titled “Implements”Constructors
Section titled “Constructors”Constructor
Section titled “Constructor”new ConsoleLogger():
ConsoleLogger
Returns
Section titled “Returns”ConsoleLogger
Methods
Section titled “Methods”critical()
Section titled “critical()”critical(
message, …args):void
Defined in: packages/hoppity/src/consoleLogger.ts:62
Log a critical error message using console.error
Parameters
Section titled “Parameters”message
Section titled “message”string
The message to log
…any[]
Additional arguments to log
Returns
Section titled “Returns”void
Implementation of
Section titled “Implementation of”debug()
Section titled “debug()”debug(
message, …args):void
Defined in: packages/hoppity/src/consoleLogger.ts:26
Log a debug message using console.log
Parameters
Section titled “Parameters”message
Section titled “message”string
The message to log
…any[]
Additional arguments to log
Returns
Section titled “Returns”void
Implementation of
Section titled “Implementation of”error()
Section titled “error()”error(
message, …args):void
Defined in: packages/hoppity/src/consoleLogger.ts:53
Log an error message using console.error
Parameters
Section titled “Parameters”message
Section titled “message”string
The message to log
…any[]
Additional arguments to log
Returns
Section titled “Returns”void
Implementation of
Section titled “Implementation of”info()
Section titled “info()”info(
message, …args):void
Defined in: packages/hoppity/src/consoleLogger.ts:35
Log an info message using console.log
Parameters
Section titled “Parameters”message
Section titled “message”string
The message to log
…any[]
Additional arguments to log
Returns
Section titled “Returns”void
Implementation of
Section titled “Implementation of”silly()
Section titled “silly()”silly(
message, …args):void
Defined in: packages/hoppity/src/consoleLogger.ts:17
Log a silly message using console.log
Parameters
Section titled “Parameters”message
Section titled “message”string
The message to log
…any[]
Additional arguments to log
Returns
Section titled “Returns”void
Implementation of
Section titled “Implementation of”warn()
Section titled “warn()”warn(
message, …args):void
Defined in: packages/hoppity/src/consoleLogger.ts:44
Log a warning message using console.warn
Parameters
Section titled “Parameters”message
Section titled “message”string
The message to log
…any[]
Additional arguments to log
Returns
Section titled “Returns”void