SharePoint Debugging/Logging

Ok, got tired of getting An unexpected error has occurred” messages. Maybe friendly to some, but useless to those of us trying to get some SharePoint development done.

The solution is to change a single entry in web.config, by modifying the line…

SafeMode MaxControls=”200″ CallStack=”false”…

to…

SafeMode MaxControls=”200″ CallStack=”true”…

You will also need to set custom errors to ‘Off’ .

customErrors mode=”Off”