From a9365c2efa27d5bf03178c506378a8d034346a68 Mon Sep 17 00:00:00 2001 From: Ahmed Ibrahim Date: Fri, 24 Oct 2025 22:49:30 -0700 Subject: [PATCH] feedback --- codex-rs/feedback/src/lib.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/codex-rs/feedback/src/lib.rs b/codex-rs/feedback/src/lib.rs index 8b071a4456..b1adb3db3f 100644 --- a/codex-rs/feedback/src/lib.rs +++ b/codex-rs/feedback/src/lib.rs @@ -219,8 +219,6 @@ impl CodexLogSnapshot { self.thread_id ); - // Include the user's free-text feedback (reason) as an Exception value so it - // appears in Sentry where it would otherwise say "No error message". let mut event = Event { level, message: Some(title.clone()), @@ -230,9 +228,7 @@ impl CodexLogSnapshot { if let Some(r) = reason { use sentry::protocol::Exception; use sentry::protocol::Values; - // Set the exception type to the same string as our title so the - // Sentry issue title stays unchanged. The feedback text becomes - // the exception value, filling the previous "No error message" spot. + event.exception = Values::from(vec![Exception { ty: title.clone(), value: Some(r.to_string()),