Does log_message() log the line number? |
The CI_Exceptions class is called by the function which CI registers as the exception-handler to log and (if enabled) display the exception. Since it is registered with PHP's native exception-handling mechanism, CI's exception-handler expects any exception thrown by your application to use (or extend) the native PHP Exception class.
So, CI_Exceptions is not an Exception (or an extension of Exception), it is simply a collection of methods which handle errors and exceptions, and a property which defines the error/warning levels used by CI. |
Messages In This Thread |
Does log_message() log the line number? - by eldan88 - 06-07-2015, 04:31 PM
RE: Does log_message() log the line number? - by mwhitney - 06-08-2015, 07:31 AM
RE: Does log_message() log the line number? - by eldan88 - 06-15-2015, 03:29 PM
RE: Does log_message() log the line number? - by mwhitney - 06-16-2015, 06:49 AM
RE: Does log_message() log the line number? - by eldan88 - 06-16-2015, 07:03 AM
RE: Does log_message() log the line number? - by mwhitney - 06-16-2015, 07:23 AM
|