Expand my Community achievements bar.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.

Mark Solution

This conversation has been locked due to inactivity. Please create a new post.

SOLVED

Adobe DTM Switch issues

Avatar

Level 4

I noticed this week that there is a long delay when I do a DTM implementation and the time it takes for the Adobe DTM Switch staging to work. Normally I would be able to check updates or changes immediately using the debugger. As of this week, if I implemented some tracking during the day and turned on the debugger, nothing would register in the developer console. What happens now is the updates I made during the day would finally show-up in the developer console in the evening. Why is there a time lag now? Is there an alternative solution?

 

Thank you,

 

Bill

1 Accepted Solution

Avatar

Correct answer by
Level 9

Hi Bill,

Thanks for reaching out. I have experienced the same thing. There are a few alternative plugins available here: https://marketing.adobe.com/resources/help/en_US/dtm/c_dtm_switch_plugins.html. Another option is to manually enable debugging using the console:

Enable/Disable Staging

localStorage.setItem(‘sdsat_stagingLibrary’, true);

localStorage.setItem(‘sdsat_stagingLibrary’, false);

Enable/Disable Debugging

_satellite.setDebug(true);  

_satellite.setDebug(false);

There is a cheat sheet available with more commands on Jim Gordon's blog here: http://jimalytics.com/tag-management/dynamic-tag-manager-dtm-cheat-sheet/

 

Let me know if that doesn't work.

Best,

Tacia

View solution in original post

2 Replies

Avatar

Correct answer by
Level 9

Hi Bill,

Thanks for reaching out. I have experienced the same thing. There are a few alternative plugins available here: https://marketing.adobe.com/resources/help/en_US/dtm/c_dtm_switch_plugins.html. Another option is to manually enable debugging using the console:

Enable/Disable Staging

localStorage.setItem(‘sdsat_stagingLibrary’, true);

localStorage.setItem(‘sdsat_stagingLibrary’, false);

Enable/Disable Debugging

_satellite.setDebug(true);  

_satellite.setDebug(false);

There is a cheat sheet available with more commands on Jim Gordon's blog here: http://jimalytics.com/tag-management/dynamic-tag-manager-dtm-cheat-sheet/

 

Let me know if that doesn't work.

Best,

Tacia

Avatar

Level 4

Tacia,

Thank you for the alternative options.

Bill