Class: NullLogger
A logger that does nothing.
Implements
Properties
debugEnabled
readonlydebugEnabled:boolean=false
Whether debug logging is enabled.
Implementation of
Defined in
packages/verse-core/src/utils/logging.ts:163
infoEnabled
readonlyinfoEnabled:boolean=false
Whether info logging is enabled.
Implementation of
Defined in
packages/verse-core/src/utils/logging.ts:162
INSTANCE
readonlystaticINSTANCE: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