我有以下课程:
namespace AppBundle\EventListener;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use FOS\UserBundle\Event\UserEvent;
use FOS\UserBundle\FOSUserEvents;
use FOS\UserBundle\Event\FormEvent;
class UserRegistrationListener implements EventSubscriberInterface
{
protected $logger;
public function __construct($logger)
{
$this->logger = $logger;
}
public static function getSubscribedEvents()
{
return array(
FOSUserEvents::REGISTRATION_INITIALIZE => 'onRegistrationInit',
);
}
/**
* take action when registration is initialized
* set the username to a unique id
* @param \FOS\UserBundle\Event\FormEvent $event
*/
public function onRegistrationInit(UserEvent $userevent)
{
$this->logger->info("Log Something");
$user = $userevent->getUser();
$user->setUsername(uniqid());
}
}
我已经花了好几个小时从里面记录了一些东西,但没有运气。
我已经阅读了很多文档,我相信我需要以某种方式'注入'monolog即服务。然而,我所看到的内容似乎并不清楚。
一些细节:
#config_dev.yml
monolog:
channels: [chris]
handlers:
mylog:
type: stream
path: "%kernel.logs_dir%/%kernel.environment%_chris.log"
channels: chris
formatter: monolog.my_line_formatter
。
#services.yml
services:
monolog.my_line_formatter:
class: Monolog\Formatter\LineFormatter
arguments: [~, ~, true]
app.user_registration:
class: AppBundle\EventListener\UserRegistrationListener
arguments: [@logger] ## changed to [@monolog.logger.chris] to us custom channel
tags:
- { name: kernel.event_subscriber }
我需要做些什么才能让Monolog在我的课程中使用我的格式化工具?
更新 @griotteau我已经完成了你在答案中发布的内容,但我仍然收到错误:
CRITICAL - 未捕获的PHP异常Symfony \ Component \ Debug \ Exception \ ContextErrorException:“警告:缺少AppBundle \ EventListener \ UserRegistrationListener :: __ construct()的参数1,在... filepath ... \ app \ cache \中调用第384行的dev \ appDevDebugProjectContainer.php并定义了“at ... filepath ... \ src \ AppBundle \ EventListener \ UserRegistrationListener.php第18行
已解决的错误我已经有了同一个类的服务(未在ym问题中显示)。 @griotteau的回答是正确的。
答案 0 :(得分:6)
您可以在声明服务时传递参数
在services.yml:
app.user_registration:
class: AppBundle\EventListener\UserRegistrationListener
arguments: [@logger]
tags:
- { name: kernel.event_subscriber }
在你的班级中,添加一个构造函数:
protected $logger;
public function __construct($logger)
{
$this->logger = $logger;
}
因此,当您想要添加日志时:
$this->logger->info(...);