Skip to main content

SharePoint

Go Search
Blog
SPDev
SharePoint
Governance
  
Mark Wagner - Cogitation Blog > SharePoint > SharePoint Wiki Pages > Configure Debug Mode in SharePoint  

Configure Debug Mode in SharePoint

Modifying web.config enables debugging support and error messages that contain stack traces.  I’m posting this snippet of web.config so that I can always find it when I need it.

<configuration>

  <SharePoint>

    <SafeMode CallStack="true" />

  </SharePoint>

  <system.web>

    <customErrors mode="Off" />

    <compilation debug="true" />

  </system.web>

</configuration>

Last modified at 6/2/2009 2:06 PM  by Mark Wagner