projects/ngui-common/src/lib/ngui-utils/src/konsole.ts
window.konsole alternative
Properties |
|
Methods |
Static LOG_LEVELS |
Type : object
|
Default value : {
ALL: parseInt('00000', 2),
DEBUG: parseInt('00001', 2),
LOG: parseInt('00010', 2),
INFO: parseInt('00100', 2),
WARN: parseInt('01000', 2),
ERROR: parseInt('10000', 2),
NONE: parseInt('11111', 2)
}
|
all log levels |
Static logLevel |
Type : string
|
Default value : 'INFO'
|
current log level set by setLogLevel, default 'INFO' |
Static debug | ||||||
debug(...args: Array
|
||||||
The same as
Parameters :
Returns :
void
|
Static error | ||||||
error(...args: Array
|
||||||
The same as
Parameters :
Returns :
void
|
Static info | ||||||
info(...args: Array
|
||||||
The same as
Parameters :
Returns :
void
|
Static log | ||||||
log(...args: Array
|
||||||
The same as
Parameters :
Returns :
void
|
Static setLogLevel | ||||||
setLogLevel(logLevel: string)
|
||||||
sets the current log level
Parameters :
Returns :
any
|
Static toLog | ||||
toLog(param)
|
||||
returns if it should call
Parameters :
Returns :
boolean
|
Static warn | ||||||
warn(...args: Array
|
||||||
The same as
Parameters :
Returns :
void
|