Class: NullLogger
A logger that does nothing.
Implements
Properties
debugEnabled
readonly
debugEnabled:boolean
=false
Whether debug logging is enabled.
Implementation of
Defined in
packages/verse-core/src/utils/logging.ts:163
infoEnabled
readonly
infoEnabled:boolean
=false
Whether info logging is enabled.
Implementation of
Defined in
packages/verse-core/src/utils/logging.ts:162
INSTANCE
readonly
static
INSTANCE:NullLogger
Defined in
packages/verse-core/src/utils/logging.ts:159
Methods
debug()
debug(
_
:any
):void
Logs the given message at the debug level.
Parameters
Parameter | Type |
---|---|
_ | any |
Returns
void
Implementation of
Defined in
packages/verse-core/src/utils/logging.ts:168
info()
info(
_
:any
):void
Logs the given message at the info level.
Parameters
Parameter | Type |
---|---|
_ | any |
Returns
void
Implementation of
Defined in
packages/verse-core/src/utils/logging.ts:166
sql()
sql(
_
:string
):void
Logs the given SQL query.
Parameters
Parameter | Type |
---|---|
_ | string |
Returns
void
Implementation of
Defined in
packages/verse-core/src/utils/logging.ts:169
warn()
warn(
_
:any
):void
Logs the given message at the warn level.
Parameters
Parameter | Type |
---|---|
_ | any |
Returns
void