Is there a way to log the filename/class name/function and/or line number, where the $this->log was called?
I could not find this in the documentation for $this->log or CakeLog::write ().
|
Is there a way to log the filename/class name/function and/or line number, where the I could not find this in the documentation for |
||||
|
|
|
Yes, you can use the default PHP constants for this. For example:
That should give you all the info you need. |
|||||
|
|
Or more handy, just log the trace:
will log you calls with files & line numbers that lead to that particular log() statement. |
|||
|
|