ILogger interface

The logger contract shared across @imqueue — the four console methods, and nothing else.

Signature:

export interface ILogger 

Remarks

Deliberately console-shaped, so console itself satisfies it and any @imqueue component taking a logger accepts either that or a Logger with no adapter. Implement it to route the framework's own output elsewhere.

Methods

Method

Description

error(args)

Logs at ERROR level.

info(args)

Logs at INFO level.

log(args)

Logs at the default level.

warn(args)

Logs at WARN level.

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