Automatic saving or current user session recording
By default, Kuoll script automatically creates issues on JavaScript exceptions (Errors), when server XHR returns error reply (HTTP status 4xx or 5xx) and when your web app is logging using the console.error
method.
You can control it with the createIssueOn
parameter of the createIssue
command. Find detailed description is the table above.
Example: default createIssueOn
params
kuoll("createIssue", { // previous params createIssueOn: { Error: true, // caught by window onerror consoleError: true, // console.error() logging serverError: true, // on XmlHttpRequest 5xx error response } }).