Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix analyze
  • Loading branch information
buenaflor committed Dec 18, 2023
commit e97dce8871d3fc8f3292835320639a113df26e81
4 changes: 0 additions & 4 deletions dart/lib/src/transport/spotlight_http_transport.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import 'dart:io';

import 'package:http/http.dart';
import '../utils/transport_utils.dart';
import 'http_transport_request_handler.dart';
Expand All @@ -26,11 +24,9 @@ class SpotlightHttpTransport extends Transport {

@override
Future<SentryId?> send(SentryEnvelope envelope) async {
print(_options.spotlightUrl);
try {
await _sendToSpotlight(envelope);
} catch (e) {
print('not here');
_options.logger(
SentryLevel.warning, 'Failed to send envelope to Spotlight: $e');
}
Expand Down