Tagged Questions

The process of recording errors in log file for diagnostic and Q&A purposes.

learn more… | top users | synonyms

46
votes
4answers
11k views

How do you log server errors on django sites

So, when playing with the development I can just set settings.DEBUG to True and if an error occures I can see it nicely formatted, with good stack trace and request information. But on kind of ...
37
votes
16answers
33k views

Error logging in C#

I am making my switch from coding in C++ to C#. I need to replace my C++ error logging/reporting macro system with something similar in C#. In my C++ source I can write LOGERR("Some error"); or ...
28
votes
8answers
17k views

Error handling in BASH

What is your favorite method to handle errors in BASH? The best example of handling errors in BASH I have found on the web was written by William Shotts, Jr at http://www.linuxcommand.org. William ...
23
votes
9answers
10k views

Print PHP Call Stack

I'm looking for a way to print the call stack in PHP. Bonus points if the function flushes the IO buffer.
16
votes
3answers
3k views

Best Practices for Error Logging and/or reporting for iPhone

When I do web development, I use a custom made logger that catches fatal errors and appends a trace to a file and displays a message to the user. I can occasionally glance to see if the file changed, ...
9
votes
6answers
176 views

Separating Logging Code from C# Objects

Currently I have a custom built static logging class in C# that can be called with the following code: EventLogger.Log(EventLogger.EventType.Application, string.Format("AddData request from {0}", ...
9
votes
1answer
633 views

Elmah: How do I log form post data?

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, ...
9
votes
4answers
1k views

Logging libraries for Erlang/OTP

For logging activity of an Erlang/OTP application, do you simply use a wrapper over disk_log or some other libraries?
9
votes
3answers
7k views

Use Rack::CommonLogger in Sinatra

I have a small web-server that I wrote with Sinatra. I want to be able to log messages to a log file. I've read through http://www.sinatrarb.com/api/index.html and www.sinatrarb.com/intro.html, and ...
9
votes
10answers
1k views

Where are the best locations to write an error log in Windows?

Where would you write an error log file, say ErrorLog.txt, in Windows? Keep in mind the path would need to be open to basic users for file write permissions. I know the eventlog is a possible ...
8
votes
7answers
2k views

How do I log uncaught exceptions in PHP?

I've found out how to convert errors into exceptions, and I display them nicely if they aren't caught, but I don't know how to log them in a useful way. Simply writing them to a file won't be useful, ...
7
votes
3answers
155 views

Should I log messages to stderr or stdout?

I have a program I'm writing that I want to write a custom logging facility for (e.g. diagnostic, notice, warning, error). Should I be using the stdout or the stderr stream to do this? It is an ...
7
votes
4answers
3k views

In CodeIgniter, How Can I Have PHP Error Messages Emailed to Me?

I'd like to receive error logs via email. For example, if a Warning-level error message should occur, I'd like to get an email about it. How can I get that working in CodeIgniter?
7
votes
6answers
438 views

Logging, when and what?

I am currently working on a rather large multi tiered app that will be deployed overseas. Although I hope it won't fall over or blow up once depolyed I can't be 100% sure of this. Therefore it would ...
6
votes
3answers
76 views

Annotating Exceptions with extra information without catching them

Exceptions sometimes occur. When they do, they're logged and later analyzed. The log obviously contains the stack-trace and other global information, but often crucial context is missing. I'd like ...
6
votes
2answers
634 views

Elmah add message to error logged through call to Raise(e)

I'm a bit confused at how to add a message to an error logged programatically with ELMAH. eg: public ActionResult DoSomething(int id) { try { ... } catch (Exception e) { // I ...
6
votes
3answers
4k views

How to log error message in drupal

How to log our own error messages(for ex: error due to invalid user date entry) which is generated in php program to drupal error log.
6
votes
1answer
1k views

How to catch javascript exceptions/errors?

Duplicate: Automatic feedback on JavaScript error Logging JavaScript-Errors on Server How would I go about logging errors in javascript? I can't wrap every line of javascript in try ...
5
votes
1answer
301 views

PHP's error_log() vs syslog()

I'm trying to decide what functionality to use for logging to a custom file. Background We have several PHP processes, both running as Apaches (mod_php) and as Deamons (CLI, forked). I would like to ...
5
votes
6answers
576 views

What is the best way to send application errors and logs by internet to the developers?

As the author of a C# application, I found that troubleshooting issues reported by users would be much easier if I had access to the exception or debug logs. I have included a home-grown logging ...
4
votes
3answers
164 views

Log4Net: Writing a C# object (apart from Exception) to the log?

I have seen in Log4Net you can write a message and pass as the second parameter the Exception Object. Is it possible to send another type of object to log4net so i can see the values in my log of my ...
4
votes
4answers
245 views

How to log exceptions in appengine?

try: #do something that raises an exception... except: logging.error('Error Message') I want more than just "Error Message" to show in the logs. I want to see the traceback, or at least what the ...
4
votes
1answer
77 views

Firebug and FirePHP only for selected domains?

How can I automatically enable Firebug and FirePHP only for pages in selected TLD eg. *.dev? I don't see any option for this. Maybe some userscript? Also, is there any way to always start Firebug in ...
4
votes
2answers
1k views

Can I use Zend_Log to handle PHP errors?

I'm developing a web service with Zend, more specifically I'm Zend_Amf for interop with Adobe Flex. The problem with this is that I can not easily see PHP errors because the Flex debugger won't ...
4
votes
9answers
1k views

Which log utility is good for .NET application in C# (ASP.NET, WinForms)?

I am trying to evaluate some of the best log utilities available for .NET framework, such as Microsoft Enterprise Library, Log4Net, elmah. Can someone who has already gone through this exercise would ...
4
votes
3answers
8k views

How should you diagnose the error SEHException - External component has thrown an exception

Whenever a user reports an error such as 'System.Runtime.InteropServices.SEHException - External component has thrown an exception.' - is there anything that I as a programmer can do to determine the ...
4
votes
1answer
719 views

Popular JSP/Servlet/Portlet Error Log Viewer? [closed]

After reading the latest Coding Horror post I wondered if there was a Java-based version of ELMAH out there in the open source community? A configurable JSP/Servlet/Portlet WAR that I can just drop ...
4
votes
5answers
2k views

In ColdFusion, how can I extract and store the contents of the submitted form?

I'm writing an application in ColdFusion, and even though it is mostly stable, it errors every so often. Because it has replaced the old application already, sometimes it is the users who get errors ...
4
votes
4answers
2k views

Handle errors with ErrorController rather than a direct view

I'm trying to get my head around the Error Handling in MVC. What I'm looking for is a centralized way to catch errors, log them, if possible resolve them, if nessecary take other actions and finally ...
3
votes
3answers
104 views

Log javascript errors from another subdomain

window.onerror in Firefox and Chrome seems to discard the real error message/location and always pass "Script error.", "", 0 when the offending script is on a different domain than the page itself. I ...
3
votes
3answers
115 views

Slimming Down Exception/Environment.StackTrace Meaningfully

I am analyzing errors in a legacy application as I clean it up and improve it. I have some stack traces being logged to the database, but there is a limit (VARCHAR2(1000)) to how much it is storing, ...
3
votes
1answer
295 views

Make a Python log file only when there are errors (using logging module)

I'd like to use the "logging" module in Python to write errors to a log file. However, I want the file to only be created when there are errors. I use the following code: import logging f = ...
3
votes
2answers
201 views

How to redirect python runtime errors?

I am writting a daemon server using python, sometimes there are python runtime errors, for example some variable type is not correct. That error will not cause the process to exit. Is it possible for ...
3
votes
2answers
895 views

PHP deprecated warnings on Drupal pages despite turning them off in php.ini

I have PHP deprecated errors flooding log files and Drupal status pages like this: : Function ereg() is deprecated in mysite/includes/file.inc on line 893. I should be able to turn off E_DEPRECATED ...
3
votes
2answers
602 views

logging stack trace with logger

I am using Logging Application block with C#.Net 2.0. My code is logging the error information to a flat file. I have set all required configuration in web.config like listeners, formatters and ...
3
votes
2answers
80 views

where does a novice begin with error logging in asp.net c#?

i'm a novice teaching myself asp.net in c# via trial and error learn by doing, unfortunately this means lots of errors! i have a custom errors page now that is basically a 404 so that site visitors ...
3
votes
2answers
222 views

Logging fatal/parse errors in PHP5

I'm writing an error logging service that will be integrated into websites running on my server, that will email me error batches, etc. So I've been trying to find out if there's a way to handle ...
3
votes
2answers
514 views

Logging erros in SQLite database from C# Windows Forms Application

I'm developing a win app in C# which communicates to a WCF Service. I want to log exceptions that are thrown on client to be logged in Sql Lite Database (Win app is using Sql Lite database for storing ...
3
votes
3answers
372 views

ASP.NET application not logging to the windows event log

I have two ASP.NET MVC web applications. One of them logs unhandled exceptions to the windows event log. The other doesn't. Is there a setting in IIS or the web.config to enable event log logging? ...
3
votes
6answers
793 views

Can the ASP.NET Yellow Screen of Death (YSOD) be generated on demand or captured?

We'd like to just capture the YSOD output to use in an erorr reporting email, from a Global.asax error handler, for instance. Is there any way of leveraging the built-in ysod generator?
3
votes
5answers
287 views

How much information to log from errors? [closed]

At the company I work for, I have created a Error Logging class to handle errors in my ASP.net application. It is a custom class because we are not allowed to install additional software on our ...
3
votes
10answers
862 views

Error Tracking in live/production web applications

I currently work at a company that has a lot of custom applications that are made internally. There are not currently standards for a lot of things. I would like to implement a way to record/track ...
2
votes
1answer
128 views

Elmah: How to get JSON HTTP request body from error report

I'm using Elmah to log exceptions. Elmah is great at logging request bodies if the request is a Form-based request (i.e. Content-Type: application/x-www-form-urlencoded), but with JSON based requests ...
2
votes
3answers
950 views

“[notice] child pid 3580 exit signal Segmentation fault (11)” in apache error.log [closed]

I am using Apache/PHP/MySQL stack. Using as framework CakePHP. Every now and then I get a blank white page. I can't debug it through Cake, so I peek in the apache error.log and here's what I get: ...
2
votes
2answers
489 views

How do I configure the Airbrake gem to log all Rails exceptions in both development and production environments?

I have found it difficult to send exceptions of my Rails 3 app via the Airbrake gem. At first I thought there was an Airbrake configuration error on my part, but after trial and error and reading the ...
2
votes
4answers
178 views

Detecting console.log() calls

I'm trying to write a test case for a debugging method that writes messages to the JavaScript console using console.log(). The test has to check that the message has been successfully written to the ...
2
votes
1answer
226 views

How to catch AJAX WebMethod errors in global.asax?

I'm using the common practice of catching errors in global.asax in my ASP.net application. In global.asax, I have a function Application_Error that logs the errors to the database. This works very ...
2
votes
0answers
68 views

Does ELMAH have flood protection implemented and enabled by default?

Can anyone confirm that Elmah implements flood protection behavior and that this behavior is enabled by default, or is easily enabled via web.config? If so, is the time threshold configurable? I ...
2
votes
2answers
173 views

Need to access GAE logs programmatically

we have a GWT application hosted in GAE. We use gwt-log (http:// code.google.com/p/gwt-log/) to log our client side and server side exceptions. What we need to do is to run a cron job every day at the ...
2
votes
4answers
371 views

Error Log Database — For many apps

I have a bunch of existing client/server applications that are currently chugging along. Once in a while, a client will want to add on some type of web-interface to access part of their data. These ...

1 2 3 4