自定义monolog以执行额外操作

时间:2014-12-31 14:04:50

标签: php symfony logging monolog

Helo人,

在我的项目中,有时我需要发送电子邮件和日志消息。问题是我没有使用swift邮件程序,我使用的API负责为我发送电子邮件。

我尝试的解决方案是我创建了一个自定义处理器,我注入了客户端邮件程序。我跟着http://symfony.com/doc/current/cookbook/logging/monolog.html#adding-a-session-request-token

所以我有以下内容:

namespace Tools\LoggerBundle;

use Symfony\Component\HttpFoundation\Session\Session;

class CustomProcessor
{
    private $session;
    private $token;
    // Client Mailer
    private $mailer;

    public function __construct(Session $session, $mailer)
    {
        $this->session = $session;
        $this->mailer = $mailer;
    }

    public function processRecord(array $record)
    {
        if (null === $this->token) {
            try {
                $this->token = substr($this->session->getId(), 0, 8);
            } catch (\RuntimeException $e) {
                $this->token = '????????';
            }
            $this->token .= '-' . substr(uniqid(), -8);
        }
        $record['extra']['token'] = $this->token;

        // Sends an email    
        $this->mailer->send('Alert', print_r($record, true));

        return $record;
    }
}

这非常有效,除非我需要仅在级别大于警告时才发送电子邮件。同时,正常的记录不应该停止。

你有什么建议?

1 个答案:

答案 0 :(得分:0)

您应该使用Handler类进行电子邮件发送,而不是在processoser上进行处理

<?php

use Monolog\Handler\AbstractProcessingHandler;

class EmailHandler extends AbstractProcessingHandler
{
    private $mailer;

    public function __construct($mailer, $level = Logger::WARNING, $bubble = true)
    {
        parent::__construct($level, $bubble);
        $this->mailer = $mailer;
    }

    protected function write(array $record)
    {
        $this->mailer->send($record['level_name'], print_r($record, true));
    }
}