简而言之,我正在尝试使用我在自定义处理程序服务中定义的记录器服务。
我的config.yml
services:
authentication_handler:
class: Panasonic\LoginBundle\Handler\AuthenticationHandler
arguments: [ @custom_logger ]
custom_logger:
class: Monolog\Logger
arguments: [login]
calls:
- [ pushHandler, [ @custom_logger_stream ]]
custom_logger_stream:
class: Monolog\Handler\RotatingFileHandler
arguments: [ %kernel.logs_dir%/test.log, 30, 200 ]
“服务:”在我的代码中缩进很多,不用担心。
我的捆绑/处理程序/ AuthenticationHandler
namespace Panasonic\LoginBundle\Handler;
use Monolog\Logger;
use Symfony\Component\Security\Http\Authentication\AuthenticationSuccessHandlerInterface;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
class AuthenticationHandler implements AuthenticationSuccessHandlerInterface
{
private $custom_logger;
public function __constructor(Logger $custom_logger)
{
$this->custom_logger = $custom_logger;
}
public function onAuthenticationSuccess(Request $request,
TokenInterface $token)
{
$log = $this->custom_logger;
$log->addWarning('Foo');
$log->addError('Bar');
die;
// var_dump($token); die;
// var_dump($request->getSession()); die;
}
}
我得到了:
Fatal error: Call to a member function addWarning() on a non-object in ... Panasonic\LoginBundle\Handler\AuthenticationHandler.php on line 22
注意:我知道我应该在onAuthenticationSuccess中返回一个响应,它实际上是不完整的,但我知道它有效,我得到了var_dumps的结果。
我猜注射不好,应该怎么做?我无法弄清楚在这做什么。请帮助
我检查的参考文献: Access services inside a regular class
答案 0 :(得分:1)
检查你的构造函数名称......我猜它没有被调用...
public function __construct()
{
// ...
}
我写了一篇文章,准确地解释了如何实现这一目标:http://blog.alterphp.com/2012/04/set-up-specific-log-file-for.html