symfony の Web サイトで 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.
誰か助けてくれませんか?