fix[SelectionAssistant]: remove console.log (#6474)

fix: remove console.log
This commit is contained in:
fullex
2025-05-26 20:11:13 +08:00
committed by GitHub
parent 9896c75a2e
commit 431e2aaa13
+1 -3
View File
@@ -817,8 +817,6 @@ export class SelectionService {
}
public processAction(actionItem: ActionItem): void {
console.log('processAction', this.preloadedActionWindows.length, this.actionWindows.size)
const actionWindow = this.popActionWindow()
actionWindow.webContents.send(IpcChannel.Selection_UpdateActionData, actionItem)
@@ -977,7 +975,7 @@ export class SelectionService {
}
private logInfo(message: string) {
isDev && console.log('[SelectionService] Info: ', message)
isDev && Logger.info('[SelectionService] Info: ', message)
}
private logError(...args: [...string[], Error]) {