Skip to content

Commit 41eee29

Browse files
committed
Panic even earlier earlier
1 parent d582535 commit 41eee29

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datadog-crashtracker/src/crash_info/telemetry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,6 @@ impl TelemetryCrashUploader {
240240

241241
// Also send crash ping to errors intake if available
242242
if let Some(errors_uploader) = &self.errors_intake_uploader {
243-
panic!("{}", format!("send_crash_ping: {:?}", crash_uuid));
244243
let crash_metadata = self.telemetry_metadata_to_crashtracker_metadata();
245244
if let Err(e) = errors_uploader
246245
.send_crash_ping(crash_uuid, sig_info, &crash_metadata)
@@ -256,6 +255,7 @@ impl TelemetryCrashUploader {
256255
}
257256

258257
pub async fn upload_to_telemetry(&self, crash_info: &CrashInfo) -> anyhow::Result<()> {
258+
panic!("{}", format!("upload_to_telemetry: {:?}", crash_info));
259259
let metadata = &self.metadata;
260260

261261
let message = serde_json::to_string(crash_info)?;

0 commit comments

Comments
 (0)