如何在 Kohana 3.2 中写入日志消息?

发布于 2024-12-10 23:07:49 字数 179 浏览 0 评论 0原文

好吧,我已经尝试过到处搜索,但似乎无法得到一个简单直接的答案。

我想将日志消息(INFOERROR 等)写入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

○愚か者の日 2024-12-17 23:07:49

尝试日志类 add() 方法:http://kohanaframework .org/3.2/guide/api/Log#add

像这样调用它:

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

对于第一个参数(级别),使用日志类中定义的 9 个常量之一

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

我很坚强 2024-12-17 23:07:49

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文