Using cloud services and the Azure 2.0 SDK, I would like to have my ASP.NET errors get logged to the Azure Diagnostics service.
In Visual Studio, there's a section under Diagnostics Summary called "Windows Azure Application Logs" Also "Event Logs"
When I hit an error, I only see the standard 500 error page, but there is no log anywhere to show it.
I do not want to see the yellow screen of death (since this is a customer facing page)
I'd expect that I could either open one of those Azure Tables or Blobs, and see stack traces for my ASP.NET errors (such as Null Reference Exceptions, Entity Framework errors, etc)
How do I configure this to work with Azure SDK 2.0?