Skip to content

Commit 4ca28c3

Browse files
committed
Error logging params fix
Fixed Logger#log_error call to conform to Ruby v3 syntax
1 parent 07f1dae commit 4ca28c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/sbmt/outbox/error_tracker.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class ErrorTracker
66
class << self
77
def error(message, params = {})
88
unless defined?(Sentry)
9-
Outbox.logger.log_error(message, params)
9+
Outbox.logger.log_error(message, **params)
1010
return
1111
end
1212

0 commit comments

Comments
 (0)