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.
1 parent 6f88049 commit 09d5abbCopy full SHA for 09d5abb
src/integrations/log.rs
@@ -181,8 +181,9 @@ impl log::Log for Logger {
181
182
fn log(&self, record: &log::Record<'_>) {
183
if self.options.create_issue_for_record(record) {
184
- Hub::with_active(|hub| hub.capture_event(
185
- event_from_record(record, self.options.attach_stacktraces)));
+ Hub::with_active(|hub| {
+ hub.capture_event(event_from_record(record, self.options.attach_stacktraces))
186
+ });
187
}
188
if self.options.emit_breadcrumbs && record.level() <= self.options.filter {
189
add_breadcrumb(|| breadcrumb_from_record(record))
0 commit comments