Symfony - 抑制特定端点的日志记录

时间:2021-04-14 15:01:37

标签: php symfony logging request symfony4

我有一个特定的端点,我在其中放置了一个空响应:

/**
 * @Route("/ping", name="ping")
 * @return JsonResponse
 */
public function gcpPingAction(): JsonResponse
{
    return $this->json([], Response::HTTP_OK);
}

在我的日志中我得到:

enter image description here

是否有可能以某种方式抑制被命中的这个端点的日志记录?仅针对该特定端点..

1 个答案:

答案 0 :(得分:0)

根据this,您应该可以这样做。

monolog:
    handlers:
        main:
            # ...
            type: fingers_crossed
            handler: ...
            excluded_http_codes: [{ 200: ['^/ping$'] }]

或者像这样

monolog:
    handlers:
        main:
            # ...
            type: fingers_crossed
            handler: ...
            excluded_http_codes:
                - urls:
                    - '^/ping$'

但是,我没有测试它。