File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
datadog-crashtracker/src/crash_info Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -196,7 +196,6 @@ impl ErrorsIntakeUploader {
196
196
sig_info : & SigInfo ,
197
197
metadata : & Metadata ,
198
198
) -> anyhow:: Result < ( ) > {
199
- panic ! ( "{}" , format!( "send_crash_ping: {:?}" , crash_uuid) ) ;
200
199
let payload = ErrorsIntakePayload :: from_crash_ping ( crash_uuid, sig_info, metadata) ?;
201
200
self . upload_payload ( & payload) . await
202
201
}
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ impl TelemetryCrashUploader {
240
240
241
241
// Also send crash ping to errors intake if available
242
242
if let Some ( errors_uploader) = & self . errors_intake_uploader {
243
- eprintln ! ( "DEBUG: Attempting to send crash ping to errors intake" ) ;
243
+ panic ! ( "{}" , format! ( "send_crash_ping: {:?}" , crash_uuid ) ) ;
244
244
let crash_metadata = self . telemetry_metadata_to_crashtracker_metadata ( ) ;
245
245
if let Err ( e) = errors_uploader
246
246
. send_crash_ping ( crash_uuid, sig_info, & crash_metadata)
You can’t perform that action at this time.
0 commit comments