Difference between revisions of "Debug Mode"

(Created page with "== Monitor Debugging == To configure the monitor in debug mode edit Monitor\TCAdminMonitor.exe.config and set the value of '''TCAdmin.Debug''' to '''True'''. When a task is exec...")
 
Line 1: Line 1:
 
== Monitor Debugging ==
 
== Monitor Debugging ==
To configure the monitor in debug mode edit Monitor\TCAdminMonitor.exe.config and set the value of '''TCAdmin.Debug''' to '''True'''.
+
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'''" />
  
When a task is executed you should see debug messages.
+
Stop the monitor service and start it in console mode. When a task is executed you should see debug messages.
  
 
== Website Debugging ==
 
== Website Debugging ==

Revision as of 22:39, 27 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=368"