I consider fatal logging errors to be when your application can't do any more useful work.
So, in a server where Non-fatal errors are when there's a single connection fails for some reason problem but you your application can still service other connectionscontinue to function, that's not fataleven at a reduced level of functionality or performance.
If you run
Examples of fatal errors include:
- Running out of disk space on the logging device and you're required to keep logging, that .
- Total loss of network connectivity in a client application.
- Missing configuration information if no default can be used.
Non-fatal errors would include:
- A server where a single session fails for some reason but you can still service other clients.
- An intermittent error, such as lost session, if a new session can be fatalestablished.
- Missing configuration information if a default value can be used.
