LogLevel

LogLevel

Enumeration members🔗

DEBUG🔗

DEBUG:= "DEBUG"

Only DEBUG, INFO, WARN, and ERROR logs will be logged in the console.

Defined in : types.ts

Version : SDK: 1.26.7 | Thoughtspot: 9.10.0.cl

init({
  ... // other options,
 logLevel: LogLevel.DEBUG,
})

ERROR🔗

ERROR:= "ERROR"

Only ERROR logs will be logged in the console.

Defined in : types.ts

Version : SDK: 1.26.7 | Thoughtspot: 9.10.0.cl

init({
  ... // other options,
 logLevel: LogLevel.ERROR,
})

INFO🔗

INFO:= "INFO"

Only INFO, WARN, and ERROR logs will be logged in the console.

Defined in : types.ts

Version : SDK: 1.26.7 | Thoughtspot: 9.10.0.cl

init({
  ... // other options,
 logLevel: LogLevel.INFO,
})

SILENT🔗

SILENT:= "SILENT"

No logs will be logged in the console.

Defined in : types.ts

Version : SDK: 1.26.7 | Thoughtspot: 9.10.0.cl

init({
  ... // other options,
 logLevel: LogLevel.SILENT,
})

TRACE🔗

TRACE:= "TRACE"

All logs will be logged in the console.

Defined in : types.ts

Version : SDK: 1.26.7 | Thoughtspot: 9.10.0.cl

init({
  ... // other options,
 logLevel: LogLevel.TRACE,
})

WARN🔗

WARN:= "WARN"

Only WARN and ERROR logs will be logged in the console.

Defined in : types.ts

Version : SDK: 1.26.7 | Thoughtspot: 9.10.0.cl

init({
  ... // other options,
 logLevel: LogLevel.WARN,
})