From 7a9f089b113d7a1a871dce19b2aefae514958e3a Mon Sep 17 00:00:00 2001 From: Nate Date: Thu, 9 Oct 2025 16:25:41 -0700 Subject: [PATCH] Add debug logging to feedback capture in NextEditLoggingService --- core/nextEdit/NextEditLoggingService.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/nextEdit/NextEditLoggingService.ts b/core/nextEdit/NextEditLoggingService.ts index 430cb576a6a..5c67760e8b2 100644 --- a/core/nextEdit/NextEditLoggingService.ts +++ b/core/nextEdit/NextEditLoggingService.ts @@ -246,6 +246,9 @@ export class NextEditLoggingService { }), }, ); - } catch (error) {} + console.debug("Feedback: ", resp); + } catch (error: any) { + console.debug(`Error capturing feedback: ${error.message}`); + } } }