-4

我正在尝试在我的 symfony 网站中使用 monolog。

实际上,我将这些行添加到控制器的操作中,以保存发生的每个操作,即单击按钮、更改数据库...

public function indexAction()
{
    $logger = $this->get('logger');
    $logger->info('I just got the logger');
    $logger->err('An error occurred');

    // ...
}

but I don't know where to find the output and how even to make the first steps with monolog.

有人可以帮我吗?

4

1 回答 1

0

这将在日志文件中记录消息:

app/logs/prod.log
app/logs/dev.log

基本上:app/logs/your_environment.log

于 2013-05-07T09:52:29.453 回答