When logging when is an error fatal? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T10:38:20Zhttp://stackoverflow.com/feeds/question/313351http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/313351/when-logging-when-is-an-error-fatal1When logging when is an error fatal?Jason Whitehorn2008-11-24T03:30:23Z2008-11-24T03:45:05Z
<p>In logging frameworks like log4j & log4net you have the ability to log various levels of information. Most of the levels have obvious intentions (such as what a "Debug" log is vs. a "Error"). However, one thing that I have always been timid on was classifying my logging as "Fatal".</p>
<p>What type of errors are so severe that they should be classified as fatal? While this is slightly case driven, what are some of the rules-of-thumb that you use when deciding between logging an exception as fatal or just simply error?</p>
http://stackoverflow.com/questions/313351/when-logging-when-is-an-error-fatal/313355#3133554Answer by Mitch Wheat for When logging when is an error fatal?Mitch Wheat2008-11-24T03:34:58Z2008-11-24T03:34:58Z<p>An error is Fatal if something is missing or a situation occurs for which the application can simply not continue. Possible examples are a missing required config.file or when an exception 'bubbles up' and is caught by an unhandled exception handler</p>
http://stackoverflow.com/questions/313351/when-logging-when-is-an-error-fatal/313356#3133563Answer by paxdiablo for When logging when is an error fatal?paxdiablo2008-11-24T03:36:18Z2008-11-24T03:45:05Z<p>I consider fatal errors to be when your application can't do any more useful work. Non-fatal errors are when there's a problem but your application can still continue to function, even at a reduced level of functionality or performance.</p>
<p>Examples of fatal errors include:</p>
<ul>
<li>Running out of disk space on the logging device and you're required to keep logging.</li>
<li>Total loss of network connectivity in a client application.</li>
<li>Missing configuration information if no default can be used.</li>
</ul>
<p>Non-fatal errors would include:</p>
<ul>
<li>A server where a single session fails for some reason but you can still service other clients.</li>
<li>An intermittent error, such as lost session, if a new session can be established.</li>
<li>Missing configuration information if a default value can be used.</li>
</ul>
http://stackoverflow.com/questions/313351/when-logging-when-is-an-error-fatal/313360#3133600Answer by Uri for When logging when is an error fatal?Uri2008-11-24T03:39:34Z2008-11-24T03:39:34Z<p>I would use fatal if my next step is for the application to terminate, or merely not do any more subsequent work. If the application is part of a batch or there are multiple processes running, this can be useful for tracing what happened.</p>
<p>If there is a chance of recovery (e.g., loss of network connection with retries for a while) I would not use a fatal.</p>
<p>If I have multiple service threads activated by a main thread and one of them fails because of some bad input but the application can still serve new requests, I do not consider it fatal. </p>
http://stackoverflow.com/questions/313351/when-logging-when-is-an-error-fatal/313361#3133610Answer by daub815 for When logging when is an error fatal?daub8152008-11-24T03:41:41Z2008-11-24T03:41:41Z<p>To make this answer short and sweet, if your application crashes, I would consider that fatal. If you cannot connect to an important resource such as a database or a required service, that would be fatal. Overall, I would say that if it keeps your application from running correctly and affects the user, I would classify it as a fatal error. </p>
<p>But the most important way to classify errors is to consistently follow a rule of thumb such as rule 69 in <a href="http://www.gotw.ca/publications/c++cs.htm" rel="nofollow">C++ Coding Standards</a>: </p>
<blockquote>
<p>"Develop a practical, consistent, and rational error handling policy early in design, and then stick to it."</p>
</blockquote>