DojoX is a JavaScript toolkit that eases the development procedure. It provides language utilities, UI components, and several other tools to track user behaviours.
In DojoX, console messages are messages logged to the server. These messages are used to debug and troubleshoot different issues. Some default messages are error
, warn
, info
, and rlog
, which are displayed as follows:
console.error("This is an error message");console.warn("This is a warning");console.info("This message is for information");console.rlog("This message is sent to server");
We can use these messages to retrieve the following information about the library and tracked events:
Which click or page events are being tracked?
What errors are present during configuration?
What is the browser version?
How is the tracking code being initialized?
What time are the events being tracked?
Free Resources