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.

Ok I've tried searching all over but can't seem to get just a simple straight forward answer.

I want to just write log messages (info, error, etc.) to the kohana log file (/application/logs/YYYY/MM/DD.php).

How do I do it?

share|improve this question

3 Answers

up vote 10 down vote accepted

Try the log class add() method: http://kohanaframework.org/3.2/guide/api/Log#add

Call it like this:

Log::instance()->add(Log::NOTICE, 'My Logged Message Here');

For the first parameter (level) use one of the 9 constants defined in the log class

share|improve this answer
That worked! Although I also had to add a line to make it write out to the file as well. Log::instance()->write(); – krische Oct 21 '11 at 13:16
enable log writing when adding to log by specifying Log::$write_on_add=TRUE in your bootstrap file – yretuta Feb 7 '12 at 1:44

Shuadoc you shouldn't touch system files (all those under system folder). Change the value in bootstrap.php instead as stated by Ygam

Otherwise, when updates come you'll be in trouble.

share|improve this answer

I cannot comment, but would like to add that you do not need to

Log::instance()->write() 

if you set $write_on_add to true in system/classes/kohana/log.php

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.