File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -151,8 +151,6 @@ const TaskHeader: React.FC<TaskHeaderProps> = ({
151151 return ( cacheReads !== undefined && cacheReads > 0 ) || ( cacheWrites !== undefined && cacheWrites > 0 )
152152 }
153153
154- console . log ( "IS_DEV" , { IS_DEV , isItTrue : IS_DEV === '"true"' } )
155-
156154 const ContextWindowComponent = (
157155 < >
158156 { isTaskExpanded && contextWindow && (
Original file line number Diff line number Diff line change @@ -434,17 +434,13 @@ export const ExtensionStateContextProvider: React.FC<{
434434 partialMessageUnsubscribeRef . current = UiServiceClient . subscribeToPartialMessage ( EmptyRequest . create ( { } ) , {
435435 onResponse : ( protoMessage ) => {
436436 try {
437- console . log ( "[PARTIAL] Received partialMessage event from gRPC stream" )
438-
439437 // Validate critical fields
440438 if ( ! protoMessage . ts || protoMessage . ts <= 0 ) {
441439 console . error ( "Invalid timestamp in partial message:" , protoMessage )
442440 return
443441 }
444442
445443 const partialMessage = convertProtoToClineMessage ( protoMessage )
446- console . log ( "[PARTIAL] Partial message:" , partialMessage )
447- console . log ( "\n" )
448444 setState ( ( prevState ) => {
449445 // worth noting it will never be possible for a more up-to-date message to be sent here or in normal messages post since the presentAssistantContent function uses lock
450446 const lastIndex = findLastIndex ( prevState . clineMessages , ( msg ) => msg . ts === partialMessage . ts )
You can’t perform that action at this time.
0 commit comments