Module: core/log
This module provides logging functions.
Classes
Type Aliases
LogLevel
Ƭ LogLevel: "fatal"
| "error"
| "warn"
| "info"
| "debug"
| "trace"
Defined in
Logger
Ƭ Logger: Record
<LogLevel
, (obj
: object
| string
, msg?
: string
) => void
> & { setAttribute
: (key
: string
, value
: string
) => void
}
A Logger represents an object that can log messages.