Difference between revisions of "Debug Mode"

Line 5: Line 5:
 
  <add key="TCAdmin.Debug" value="'''True'''" />
 
  <add key="TCAdmin.Debug" value="'''True'''" />
  
Stop the monitor service and start it in console mode. When a task is executed you should see debug messages.
+
Stop the monitor service and start it in [[Server_Components#Linux_2|console mode]]. When a task is executed you should see debug messages.
  
 
== Website Debugging ==
 
== Website Debugging ==

Revision as of 10:43, 28 June 2011

Monitor Debugging

To configure the monitor in debug mode edit Monitor\TCAdminMonitor.exe.config. Change this line:

<add key="TCAdmin.Debug" value="False" />

To

<add key="TCAdmin.Debug" value="True" />

Stop the monitor service and start it in console mode. When a task is executed you should see debug messages.

Website Debugging

To configure the website in debug mode edit ControlPanel\Windows.config or ControlPanel\Linux.config depending on your operating system. Change this line:

<compilation debug="false" strict="true" explicit="true">

To:

<compilation debug="true" strict="true" explicit="true">

When an error occurs you should see the stack trace so we can help you troubleshoot. Also additional information is shown in the footer.

Retrieved from "https://help.tcadmin.com/index.php?title=Debug_Mode&oldid=370"