LogLevel
Enum options to show or suppress Visual Embed SDK and ThoughtSpot application logs in the console output. This attribute doesnβt support suppressing browser warnings or errors.
Indexπ
Enumeration membersπ
DEBUGπ
DEBUG:= "DEBUG"
Log debug messages, warnings, information alerts, and errors in the console output.
Defined in : types.ts
Version : SDK: 1.26.7 | ThoughtSpot Cloud: 9.10.0.cl
init({
... // other options,
logLevel: LogLevel.DEBUG,
})
ERRORπ
ERROR:= "ERROR"
Log only errors in the console output.
Defined in : types.ts
Version : SDK: 1.26.7 | ThoughtSpot Cloud: 9.10.0.cl
init({
... // other options,
logLevel: LogLevel.ERROR,
})
INFOπ
INFO:= "INFO"
Log only the information alerts, warnings, and errors in the console output.
Defined in : types.ts
Version : SDK: 1.26.7 | ThoughtSpot Cloud: 9.10.0.cl
init({
... // other options,
logLevel: LogLevel.INFO,
})
SILENTπ
SILENT:= "SILENT"
No application or SDK-related logs will be logged in the console output.
Defined in : types.ts
Version : SDK: 1.26.7 | ThoughtSpot Cloud: 9.10.0.cl
init({
... // other options,
logLevel: LogLevel.SILENT,
})