loggly: &defaults
  token: REPLACE_ME
  level: WARNING
  class: Monolog\Handler\LogglyHandler

processors:
  tag_processor:
    class: Monolog\Processor\TagProcessor
  introspection_processor:
    class: Monolog\Processor\IntrospectionProcessor
  ows1_processor:
    class: Orchard\Common\Logging\Processor\Ows1Processor

handlers:
  oa_loggly_handler:
    <<: *defaults
    tags: [oa-error]
  alw_loggly_handler:
    <<: *defaults
    tags: [alw-error]
  ows1_loggly_handler:
    <<: *defaults
    tags: [ows1]
    processors: [introspection_processor, tag_processor, ows1_processor]

loggers:
  OALogger:
    handlers: [oa_loggly_handler]
  ALWLogger:
    handlers: [alw_loggly_handler]
  OWS1Logger:
    handlers: [ows1_loggly_handler]

sentry:
  server: REPLACE_ME
  project: REPLACE_ME
  public_key: REPLACE_ME
  secret_key: REPLACE_ME
