We're about to start using Omniture, and have been provided with some JS. It has this line in it:
s.debugTracking = true;
There's not much in the documentation about what this is. Can anyone enlighten me? Is it something you would want to set to false on production? Is it necessary to make plugins like Omnibug work?
I found these references in Adobe's documentation, none of which really explain what it's for:
https://marketing.adobe.com/resources/help/en_US/sc/appmeasurement/video/video_flash_test.html
/* Turn on and configure debugging here */
s.debugTracking = true;
Added debugTracking flag to enable logging of requests send to Firebug console just like the other platforms.
https://marketing.adobe.com/resources/help/en_US/sc/appmeasurement/video/video_flash_sample.html
/* Turn on and configure debugging here - turn this off for production deployment */
s.debugTracking = true;
debugTracking
essentially just sends aconsole.log
call of the request that was made and breaks out all of the parameters. It isn't required for tools like Omnibug or DigitalPulse debugger to work.It can be removed, or set to false to disable it.