Sha256: 9fac2b17d0fa28dd204fded4776cbe5583b9204e95aa26278e571b97f4d1c807
Contents?: true
Size: 896 Bytes
Versions: 6
Compression:
Stored size: 896 Bytes
Contents
# frozen_string_literal: true SlackWebhookLogger.setup do |config| # The URL where messages will be sent. This is required. config.webhook_url = 'https://hooks.slack.com/services/xxx/yyy/zzz' # The minimum error level to see in Slack. This is optional; the default is :WARN. # # All log levels are supported, but don't rely on anything less then :WARN # since Slack only allows one message per minute. # config.level = :WARN # You can provide a custom log formatter if you want to. This is optional. # The formatter must construct a JSON blob that adheres to Slack's expected # POST payload for `chat.postMessage`: https://api.slack.com/methods/chat.postMessage # config.formatter = SomeOtherFormatter.new # You can provide an array of regular expressions to ignore certain messages # from being sent to Slack. This is optional. # config.ignore_patterns = [] end
Version data entries
6 entries across 6 versions & 1 rubygems