Skip to content

Commit 0d769b4

Browse files
authored
Removed some logging (RooCodeInc#4104)
1 parent 361b0cf commit 0d769b4

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

webview-ui/src/components/chat/task-header/TaskHeader.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff 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 && (

webview-ui/src/context/ExtensionStateContext.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)