File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
datadog-crashtracker/src/crash_info Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -196,6 +196,7 @@ impl ErrorsIntakeUploader {
196
196
sig_info : & SigInfo ,
197
197
metadata : & Metadata ,
198
198
) -> anyhow:: Result < ( ) > {
199
+ panic ! ( "{}" , format!( "send_crash_ping: {:?}" , crash_uuid) ) ;
199
200
let payload = ErrorsIntakePayload :: from_crash_ping ( crash_uuid, sig_info, metadata) ?;
200
201
self . upload_payload ( & payload) . await
201
202
}
@@ -206,7 +207,6 @@ impl ErrorsIntakeUploader {
206
207
}
207
208
208
209
async fn upload_payload ( & self , payload : & ErrorsIntakePayload ) -> anyhow:: Result < ( ) > {
209
- panic ! ( "{}" , format!( "upload_payload: {:?}" , payload) ) ;
210
210
// Read environment variables independently (parallel to telemetry)
211
211
let agent_host =
212
212
parse_env:: str_not_empty ( "DD_AGENT_HOST" ) . unwrap_or_else ( || "localhost" . to_string ( ) ) ;
You can’t perform that action at this time.
0 commit comments