On one dev machine, the standard method for enabling SharePoint debugging is not working. From c:\inetpub\wwwroot\wss\VirtualDirectories\80\web.config:
<SharePoint>
<SafeMode MaxControls="200" CallStack="true" DirectFileDependencies="10" TotalFileDependencies="50" AllowPageLevelTrace="false">...</SafeMode>
...
</Sharepoint>
<system.web>
<customErrors mode="Off" />
<compilation batch="true" debug="true">...</compilation>
...
</system.web>
But I still get the standard completely useless SharePoint errors:
Unknown Error
Troubleshoot issues with Windows SharePoint Services.
I know the error is an Exception being thrown by a custom web part I'm writing, but I can't find anywhere that logs the stack trace. Enabling call stacks is my only hope right now and I'm completely lost. Is it possible that there's another setting or overriding web.config entry I need to set?
Thanks!