error-logging

Elmah: How do I log form post data?

Hello! Is there a way to log the post request data in ELMAH? I am getting error emails, and while the error log contains the URL, request method, etc, I am not seeing the actual POST data. For example, Here is a sample Actual request: /bep/KotexCode/GetCode?stickerCode=1234532 But, the log only shows the request url and not the vari...

Problem with Kohana 2.3.4 error logging

I have some problem with error logging in Kohana v2.3.4. In the index.php I have kept the default settings: error_reporting(E_ALL); ini_set('display_errors', TRUE); In config.php I have set $config['log_threshold'] = 3; $config['display_errors'] = FALSE; The problem is kohana is not handling php syntax errors. Instead the default ph...

ASP.net Custom Errors Loggin

I'm using the customErrors attribute of the web.config file to present custom errors pages: <customErrors mode="On" defaultRedirect="/errorpage.aspx"> <error statusCode="404" redirect="/404Page.aspx"/> <error statusCode="403" redirect="/403page.aspx"/> </customErrors> Nothing too fancy. Now what I want to do is log the error ...