Tagged Questions
The error-reporting tag has no wiki summary.
38
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
...
29
votes
9answers
2k views
isset() and empty() make code ugly
I have several older applications that throw a lot of "xyz is undefined" and "undefined offset" messages when running on the E_NOTICE error level, because the existence of variables is not explicitly ...
20
votes
11answers
2k views
WinQual: Why would WER not accept code-signing certificates?
In 2005 i tried to establish a WinQual account with Microsoft, so i could pick up our (if any) crash dump files submitted automatically through Windows Error Reporting (WER). i was not allowed to have ...
12
votes
8answers
8k views
What is the recommended error_reporting() setting for development? What about E_STRICT?
Typically I use E_ALL to see anything that PHP might say about my code to try and improve it.
I just noticed a error constant E_STRICT, but have never used or heard about it, is this a good setting ...
11
votes
11answers
2k views
Why is exception handling bad?
Google's Go language has no exceptions as a design choice, and Linus of Linux fame has called exceptions crap. Why?
10
votes
8answers
402 views
E_NOTICE ?== E_DEBUG, avoiding isset() and @ with more sophisticated error_handler
Which better ways exist to avoid an abundance of isset() in the application logic, and retain the ability to see debug messages (E_NOTICE) when required?
Presumption first: E_NOTICE is not an error, ...
9
votes
5answers
291 views
Best way to handle and report memory allocation errors due to integer overflow in Objective-C?
To begin with, let me say that I understand how and why the problem I'm describing can happen. I was a Computer Science major, and I understand overflow/underflow and signed/unsigned arithmetic. (For ...
8
votes
5answers
174 views
Error reporting in a C library
I am looking for a robust way to report errors in a C library. Consider the simple example of a queue:
struct queue *q = malloc(sizeof(*q));
if (NULL == q) {
/* malloc failed. now what ? */
...
8
votes
3answers
390 views
Exception reporting from a WPF Application
So lets say I happen to have an unhandled exception in my application or it crashes for some reason.
Is there some way for me to capture the output and show an error report dialog when the application ...
7
votes
3answers
2k views
Save output error messages to file in MATLAB
Is there a way to save MATLAB error messages to a file?
This may be a simple issue, but Google couldn't give me an answer. I've compiled a GUI executable for use without a MATLAB license, and ...
7
votes
9answers
765 views
Where do you like to catch exceptions and why?
Where do you like to catch exceptions and why?
I'm interested in seeing where people find it useful to put their try/catch blocks in the hope that some general patterns might emerge. I'll post my ...
6
votes
5answers
850 views
C++/Windows: How to report an out-of-memory exception (bad_alloc)?
I'm currently working on an exception-based error reporting system for Windows MSVC++ (9.0) apps (i.e. exception structures & types / inheritance, call stack, error reporting & logging and so ...
6
votes
8answers
182 views
When software problems reported are not really software problems
Apologies if this has already been covered or you think it really belongs on wiki.
I am a software developer at a company that manufactures microarray printing machines for the biosciences industry. ...
6
votes
12answers
3k views
PHP's white screen of death
Now that I'm starting to get back into PHP, I'm starting to remember why I gave it up in the first place. The most annoying thing on my plate at the moment is what I've come to term "PHP's white ...
6
votes
6answers
401 views
How to best implement simple crash / error reporting?
What would be the best way to implement a simple crash / error reporting mechanism?
Details: my app is cross-platform (mac/windows/linux) and written in Python, so I just need something that will ...
5
votes
2answers
191 views
.NET Error Reporting Framework Client/Server?
Anyone knows of one? Preferred open source?
Basically some framework that I can hook up that collects error information, forwards it to a central location via web service including collecting crash ...
5
votes
2answers
275 views
Fogbugz and ELMAH - Communication Plugin
My employer is currently trying out Fogbugz and one feature that would be nice is some sort of automation between our exception logger (ELMAH) and case generation in FogBugz. Specifically, it would be ...
5
votes
6answers
1k views
.NET “Send error report to [me]”
If an exception propagates all the way up to the top of my application (which, of course, will never happen), I would like to offer the option of sending an error report to me before the program ...
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 ...
5
votes
4answers
1k views
How can I capture all exceptions from a wxPython application?
I'm writing a little debug app for a bit of kit we're developing and I'd like to roll it out to a few users to see if they can provoke any crashes. Does anyone know a way of effectively wrapping a ...
4
votes
2answers
63 views
How can I collect client-side information on errors in my PHP application?
I'm putting together an enterprise application using PHP and Yii. I want an easy way for the users to report a problem or bug if one occurs however I'm having a difficult time deciding the best way to ...
4
votes
1answer
46 views
PHP notice supression; only certain circumstances/methods
tl;dr - Is there an effective way to manage the error reporting level of PHP when working in a very strict environment, given certain processes would be made easier with a less strict level?
Alright; ...
4
votes
2answers
304 views
Backend for Java exception reporting GUI
Very frequently I see error reporting GUIs in commercial software. This includes the whole gamut of commercial software: games, enterprise apps, office apps, etc.
For some of my company's software I ...
4
votes
4answers
233 views
How to throttle Django error emails
I use django error reporting via email. It is normally a very helpful feature, except that now we have 5 minutes of database downtime and I got 2000 emails. Is there any middleware that will help me ...
4
votes
3answers
2k views
Difference between error_reporting() and ini_set('error_reporting')?
When using error_reporting() or ini_set('error_reporting') in my scripts, are there any functionality differences between the two? Is one method preferred over the other?
For what it's worth, I see ...
4
votes
2answers
3k views
What are differences between error_reporting(E_ALL) and error_reporting(E_ALL & ~E_NOTICE)
I am using PHP.
Could anyone explain differences between error_reporting(E_ALL) and error_reporting(E_ALL & ~E_NOTICE)?
I noticed that when I change from E_ALL to E_ALL & ~E_NOTICE, an ...
4
votes
2answers
3k views
How to find a reason when mkdir fails from PHP?
PHP's mkdir function only returns true and false. Problem is when it returns false.
If I'm running with error reporting enabled, I see the error message on the screen. I can also see the error ...
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
3answers
132 views
internal error markers
Theoretically, the end user should never see internal errors. But in practice, theory and practice differ. So the question is what to show the end user. Now, for the totally non-technical user, you ...
3
votes
1answer
1k views
Error reporting in zend framework
am having trouble with reporting errors in zend framework, errors messages are not displayed on the browser and i recive error's like this:
An error occurred
Application error
However i ...
3
votes
3answers
183 views
PHP won't show any errors
Here is my code:
echo 'foo';
error_reporting(E_ALL);
echo 'this line doesnt end in a semi colon'
echo 'i should get an error here';
When I run this I get no error.
Not sure how this can be?
3
votes
2answers
120 views
Implement Error Handling to my framework
I am about to start implementing error handling into my framework and looking for some advice on how to build it.
Firstly let me explain how my framework is currently built up:
Im separating the ...
3
votes
4answers
982 views
Possible to turn off E_STRICT for library code but not my code?
Is it possible to change the error reporting level (turn off E_STRICT) for files that my PHP application includes with include or require_once?
I'd like to be able to see strict notices that occur in ...
3
votes
3answers
577 views
How Do I Enter Multiple PHP Values in .htaccess?
I'm editing the .htaccess file in order to make some overwrites to my php.ini file (I don't have access to it). So far, I've added:
php_value max_execution_time 600
php_value error_reporting ...
3
votes
2answers
3k views
PHP FPM returns HTTP 500 for all PHP errors
I am running nginx with PHP-FPM. My nginx configuration for handling php files looks like this:
location ~ \.php$ {
set $php_root /home/me/www;
fastcgi_pass 127.0.0.1:9000;
...
3
votes
8answers
636 views
Error-reporting framework for .net
is there an error-reporting-framework you would suggest for use in .net. I need possibilities like e-mail-reporting with fileappending to e-mail. The user should have the possibility to add ...
3
votes
6answers
483 views
Best way for a .Net Windows service to report an error to the user
I am writing a windows service that will be doing a lot of network communication, and I need a way to notify a user (if logged on) of any exceptions/errors. I know it is bad practice to allow a ...
3
votes
4answers
920 views
Why not to use highest error reporting level in PHP?
I want you to give reasons why someone should not use the highest possible error reporting level in PHP?
Ways to set highest level:
PHP 5:
error_reporting(E_ALL | E_STRICT);
PHP 6:
...
3
votes
6answers
795 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
3answers
485 views
Centralized error reporting in PHP
is there a way to handle error reporting in a centralized manner in PHP? I'd like to be notified of all errors raised by my application by email.
What's the best way to achieve this for a whole ...
3
votes
3answers
675 views
How do I get an error report from a “Please tell Microsoft about this problem.” dialog?
A program I wrote crashes on startup. (Win XP).
A dialog "Please tell Microsoft about this problem." appears. I want to be told about the problem since it's my app.
Thing is, clicking through ...
3
votes
5answers
1k views
PHP warning: headers already sent in Unknown
I'm looking for things that might trigger the following PHP warning:
PHP Warning: Cannot modify header
information - headers already sent in
Unknown on line 0
3
votes
5answers
4k views
How to turn off mysql errors from being displayed to screen in CodeIgniter
Even though error_reporting is set to 0, database errors are still being printed to screen. Is there a setting somewhere I can change to disable database error reporting? This is for CodeIgniter ...
3
votes
5answers
1k views
Reasons why PHP would echo errors, even with error_reporting(0)?
What are some reasons why php would force errors to show, no matter what you tell it to disable?
I have tried error_reporting(0) and ini_set('display_errors',0) with no luck.
2
votes
2answers
67 views
PHP Mechanism to Suppress Strict Standards Messages
We are working on a PHP application developed for 5.2, but we recently migrated to PHP 5.3. We haven't had the time to go through and fix all the issues with the migrating to PHP 5.3. Specifically, ...
2
votes
2answers
70 views
@ error supression operator and set_error_handler
I am following good programming practices and I am logging the PHP errors to file instead of displaying it to user. I use set_error_handler() for that.
Now the problem. For example, I have somewhere:
...
2
votes
3answers
133 views
PHP error reporting and mail()
I've currently got set_error_handler() throwing ErrorException whenever anything is encountered. Furthermore, I've got error_reporting() at -1, so mis-indexing an array throws an exception.
Anyways, ...
2
votes
1answer
92 views
PHP Error Reporting stopped working
What are the possible reasons that my php error reporting would stop displaying to the browser? I must have changed something somewhere, but for the life of me I cant figure it out.
I have ...
2
votes
2answers
314 views
E_STRICT messages thrown though not set
Since updating my testing server to PHP 5.3.3 (Debian Squeeze) I encountered strange behaviour regarding the error reporting in PHP.
I set error_reporting like this:
error_reporting(E_ALL);
and ...
2
votes
1answer
227 views
Intellij IDEA 9: How can I disable the highlighting of errors in HTML files?
So the title says all. :D
How can I disable the highlighting of errors in HTML files in Intellij IDEA 9?