# The target sentry server. Please use the endpoint url found under "Client Keys" the settings of the project in sentry
server:
    key:  cnGqTechnik              # Indentifier for this project inside your log server (Used for gelf)
    type: gelf                     # type of protocol to use. gelf or sentry
    url:  logs.condenastdigital.de # Remote log url to send to

# 100 = DEBUG
# 200 = INFO
# 250 = NOTICE
# 300 = WARNING
# 400 = ERROR
# 500 = CRITICAL
# 550 = ALERT
# 600 = EMERGENCY

logging:
    level:   300     # Minimum level of events to log. Can be found in the Monolog Documentation. 250 means Logger::NOTICE
    bubble:  false   # Should other handlers also process this event? The default of false is correct most of the time.

filters:
    # A list of regexp patterns to be matched on the Exception class name. Matches will NOT be relayed
    exception:
        - /NotFoundHttpExceptihon$/
        - /HttpException$/

    # A list of regexp patterns to be matched on the message. Matches will NOT be relayed
    message:
        - /^Redirecting to/
        - /Requested specific query '(.*)', not found.$/
        - /collection.twig/                                     # Ignore errors for obsolete collection pages

