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?

link|improve this question

78% accept rate
feedback

3 Answers

up vote 6 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

link|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 – Ygam Feb 7 at 1:44
feedback

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.

link|improve this answer
feedback

I cannot comment, but would like to add that you do not need Log::instance()->write() if you set $write_on_add to true in system/classes/kohana/log.php

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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