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
}
}).
