Skip to content

Commit 4a26da4

Browse files
committed
Remove debugging
1 parent cce5eae commit 4a26da4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/core/task/Task.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -729,10 +729,6 @@ export class Task extends EventEmitter<TaskEvents> implements TaskLike {
729729
progressStatus?: ToolProgressStatus,
730730
isProtected?: boolean,
731731
): Promise<{ response: ClineAskResponse; text?: string; images?: string[] }> {
732-
console.log(
733-
`Task#ask: type -> ${type} (text = ${text}, partial = ${partial}, progressStatus = ${progressStatus}, isProtected = ${isProtected})`,
734-
)
735-
736732
// If this Cline instance was aborted by the provider, then the only
737733
// thing keeping us alive is a promise still running in the background,
738734
// in which case we don't want to send its result to the webview as it
@@ -943,7 +939,6 @@ export class Task extends EventEmitter<TaskEvents> implements TaskLike {
943939

944940
handleWebviewAskResponse(askResponse: ClineAskResponse, text?: string, images?: string[]) {
945941
this.askResponse = askResponse
946-
console.log(`Task#handleWebviewAskResponse: askResponse -> ${askResponse} (text = ${text})`)
947942
this.askResponseText = text
948943
this.askResponseImages = images
949944

0 commit comments

Comments
 (0)