Method: Sentry.capture_message
- Defined in:
- lib/sentry-ruby.rb
permalink .capture_message(message, **options) {|scope| ... } ⇒ Event?
Takes a message string and reports it to Sentry via the currently active hub.
463 464 465 466 |
# File 'lib/sentry-ruby.rb', line 463 def (, **, &block) return unless initialized? get_current_hub.(, **, &block) end |