This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
diag_elmah [2022/04/01 13:35] antreas |
diag_elmah [2022/09/27 16:34] (current) charlotte |
||
---|---|---|---|
Line 1: | Line 1: | ||
===== Elmah ===== | ===== Elmah ===== | ||
- | {{ :diag_elmah.png?600 |}} | ||
- | ELMAH (Error Logging Modules and Handlers) is an application-wide error logging facility that is completely pluggable. It captures neraly all unhandled exceptions in PMA.core as well as some handled exceptions that needs to be reported. It also provides the following very usefull features for maintaining a running production server: | + | ELMAH ([[https://elmah.github.io|Error Logging Modules and Handlers]]) is an application-wide error logging facility that is completely pluggable. |
+ | |||
+ | {{ ::rootdir_elmah.png?direct&400 |}} | ||
+ | |||
+ | This offers a standard way of capturing runtime errors in software, and they can help troubleshoot intermittent problems. | ||
+ | |||
+ | Examples include: | ||
+ | * connection information is (temporarily) no longer correct | ||
+ | * a file format may have been modified by its vendor and now no longer renders correctly | ||
+ | |||
+ | It captures nearly all unhandled exceptions in PMA.core as well as some handled exceptions that needs to be reported. It also provides the following very usefull features for maintaining a running production server: | ||
* Logging of nearly all unhandled exceptions. | * Logging of nearly all unhandled exceptions. | ||
Line 9: | Line 18: | ||
* A web page to remotely view the full details of any one logged exception, including colored stack traces. | * A web page to remotely view the full details of any one logged exception, including colored stack traces. | ||
+ | {{ :diag_elmah.png?600 |}} | ||
Elmah although powerful and useful it is, it is not a substitute for IIS logs and PMA.core internal logging as it does not capture all detailed information for requests like IIS does, nor does know the internal workings of PMA.core as the internal logging is capable of. | Elmah although powerful and useful it is, it is not a substitute for IIS logs and PMA.core internal logging as it does not capture all detailed information for requests like IIS does, nor does know the internal workings of PMA.core as the internal logging is capable of. | ||
- | |||