Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ().

share|improve this question

2 Answers

up vote 5 down vote accepted

Yes, you can use the default PHP constants for this. For example:

CakeLog::write('debug', 'Oops, something went wrong in ' .
    __FILE__ . ' on line' . __LINE__ . ' within the class ' . get_class()
);

That should give you all the info you need.

share|improve this answer
Thanks. Borrowed the above syntax into $this->log format. $this->log('Oops, something went wrong in ' .__FILE__ . ' on line' . LINE . ' within the class ' . get_class(), 'debug'); – Joe Smith Feb 4 at 18:33
@Joe Smith You could also write a new function for this and use debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS). This might be useful when you have a lot of __FILE__/__LINE__ messages to log. – Jelmer Feb 5 at 20:35

Or more handy, just log the trace:

$e = new Exception; $this->log($e->getTraceAsString());

will log you calls with files & line numbers that lead to that particular log() statement.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.