如何在 Kohana 3.2 中写入日志消息?
好吧,我已经尝试过到处搜索,但似乎无法得到一个简单直接的答案。
我想将日志消息(INFO
、ERROR
等)写入 Kohana 日志文件 /application/logs/YYYY/MM/DD.php.
我该怎么做?
Ok I've tried searching all over but can't seem to get just a simple straight forward answer.
I want to write log messages (INFO
, ERROR
, etc.) to the Kohana log file /application/logs/YYYY/MM/DD.php
.
How do I do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试日志类
add()
方法:http://kohanaframework .org/3.2/guide/api/Log#add像这样调用它:
对于第一个参数(级别),使用日志类中定义的 9 个常量之一
Try the log class
add()
method: http://kohanaframework.org/3.2/guide/api/Log#addCall it like this:
For the first parameter (level) use one of the 9 constants defined in the log class
Shuadoc 你不应该碰系统文件(所有位于系统文件夹下的文件)。
按照 Ygam 的说明更改 bootstrap.php 中的值,
否则,当更新到来时,您将遇到麻烦。
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.