đ Console logs
Tags: JavaScript, React, Vue, Angular, Website, Web App
The Gleap JavaScript SDK collects console logs by default. Further more you can make use of our custom logs, which offer more control over the logs.
Disable default console logsâ
It is possible to disable the default collection of console logs by calling the following method prior to the initialization of Gleap.
Gleap.disableConsoleLogOverwrite();
Custom logsâ
Custom logs allow you to create logs in the Gleap activity log. There are three severnity types available for logs: ERROR
, WARNING
and INFO
.
Gleap.log("This is a test custom log.");
By default logs will be created with the severnity INFO
. Use the following method to explicitly set the severnity.
Gleap.log("This is a test custom log WARNING.", "WARNING");