@@ -193,11 +193,6 @@ export const EditorTabs = () => {
193193 loadFileResource ( ) ;
194194 const currentPosition = cursorPositionPerProject [ projectId ] ?. [ activeEditorFileName ] ;
195195
196- LoggerService . info (
197- namespaces . chatbot ,
198- `Setting cursor positions for project ${ projectId } file info: line ${ currentPosition ?. startLine || 1 } `
199- ) ;
200-
201196 iframeCommService . safeSendEvent ( MessageTypes . SET_EDITOR_CODE_SELECTION , {
202197 filename : activeEditorFileName ,
203198 startLine : currentPosition ?. startLine || 1 ,
@@ -209,11 +204,6 @@ export const EditorTabs = () => {
209204
210205 if ( ! currentSelection ) return ;
211206
212- LoggerService . info (
213- namespaces . chatbot ,
214- `Sending stored selection for project ${ projectId } file ${ activeEditorFileName } : lines ${ currentSelection . startLine } -${ currentSelection . endLine } `
215- ) ;
216-
217207 iframeCommService . safeSendEvent ( MessageTypes . SET_EDITOR_CODE_SELECTION , currentSelection ) ;
218208
219209 // eslint-disable-next-line react-hooks/exhaustive-deps
@@ -296,10 +286,6 @@ export const EditorTabs = () => {
296286 }
297287
298288 if ( ! position ) return ;
299- LoggerService . info (
300- namespaces . chatbot ,
301- `Setting cursor positions for project ${ projectId } file info: line ${ position . lineNumber } , column ${ position . column } `
302- ) ;
303289
304290 setIsFocusedAndTyping ( true ) ;
305291
@@ -336,11 +322,6 @@ export const EditorTabs = () => {
336322
337323 setSelection ( projectId , activeEditorFileName , selectionData ) ;
338324
339- LoggerService . info (
340- namespaces . chatbot ,
341- `Selection changed for project ${ projectId } : lines ${ selection . startLineNumber } -${ selection . endLineNumber } , text: "${ editorCode . substring ( 0 , 100 ) } ${ editorCode . length > 100 ? "..." : "" } "`
342- ) ;
343-
344325 iframeCommService . safeSendEvent ( MessageTypes . SET_EDITOR_CODE_SELECTION , selectionData ) ;
345326 }
346327 } ;
@@ -587,24 +568,12 @@ export const EditorTabs = () => {
587568 debouncedAutosave ( model . getValue ( ) ) ;
588569 }
589570
590- LoggerService . info (
591- namespaces . ui . projectCodeEditor ,
592- `Applied code fix suggestion for lines ${ startLine } -${ endLine } in ${ activeEditorFileName } `
593- ) ;
594-
595571 addToast ( {
596572 message : `Successfully applied code fix to lines ${ startLine } -${ endLine } ` ,
597573 type : "success" ,
598574 } ) ;
599575 } ;
600576
601- const handleRejectCodeFix = ( ) => {
602- LoggerService . info (
603- namespaces . ui . projectCodeEditor ,
604- `Rejected code fix suggestion for lines ${ codeFixData ?. startLine } -${ codeFixData ?. endLine } `
605- ) ;
606- } ;
607-
608577 return (
609578 < div className = "relative flex h-full flex-col pt-11" >
610579 { projectId ? (
@@ -721,8 +690,7 @@ export const EditorTabs = () => {
721690 modifiedCode = { codeFixData . modifiedCode }
722691 name = { ModalName . codeFixDiffEditor }
723692 onApprove = { handleApproveCodeFix }
724- onClose = { handleCloseCodeFixModal }
725- onReject = { handleRejectCodeFix }
693+ onReject = { handleCloseCodeFixModal }
726694 originalCode = { codeFixData . originalCode }
727695 startLine = { codeFixData . startLine }
728696 />
0 commit comments