Method: Sentry::Scope#set_context
- Defined in:
- lib/sentry/scope.rb
permalink #set_context(key, value) ⇒ Hash
Adds a new key-value pair to current contexts.
225 226 227 228 |
# File 'lib/sentry/scope.rb', line 225 def set_context(key, value) check_argument_type!(value, Hash) set_contexts(key => value) end |