LogBridgeBundle icon indicating copy to clipboard operation
LogBridgeBundle copied to clipboard

Too many logs are matched with the `route` configuration

Open shavounet opened this issue 3 years ago • 0 comments

Description

  • Since v10.1.0

While using a filter with route, every 200 POST request will be matched

m6_web_log_bridge:
    filters:
        request:
            route: some_route
            method: [ 'POST' ]
            status: [ '2*' ]
            level: 'notice'

Workaround

Use routes

m6_web_log_bridge:
    filters:
        request:
            routes: [ some_route ]
            method: [ 'POST' ]
            status: [ '2*' ]
            level: 'notice'

shavounet avatar Nov 10 '22 15:11 shavounet