We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 07f1dae + b41fbb9 commit 3d75c0fCopy full SHA for 3d75c0f
CHANGELOG.md
@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
13
14
### Fixed
15
16
+- Fixed "Wrong number of arguments" error in call to `Logger#log_error` in `Sbmt::Outbox::ErrorTracker::error`
17
+
18
## [6.19.1] - 2025-02-20
19
20
lib/sbmt/outbox/error_tracker.rb
@@ -6,7 +6,7 @@ class ErrorTracker
6
class << self
7
def error(message, params = {})
8
unless defined?(Sentry)
9
- Outbox.logger.log_error(message, params)
+ Outbox.logger.log_error(message, **params)
10
return
11
end
12
0 commit comments