Skip to content

Commit 4cd787d

Browse files
remove logs
1 parent 0317dfc commit 4cd787d

3 files changed

Lines changed: 0 additions & 8 deletions

File tree

packages/app/src/components/tabs.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,6 @@ export class DevtoolsTabs extends Element {
108108
}
109109

110110
render() {
111-
console.log('UUU', this.#tabList);
112-
113111
return html`
114112
${this.#tabList.length
115113
? html`

packages/app/src/components/workbench/actionItems/command.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ export class CommandItem extends ActionItem {
1313
entry?: CommandLog
1414

1515
#highlightLine() {
16-
console.log(this.entry)
17-
1816
const event = new CustomEvent('show-command', {
1917
detail: {
2018
command: this.entry,

packages/app/src/components/workbench/logs.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ export class DevtoolsSource extends Element {
4646
}
4747
return acc
4848
}, {} as Record<string, CommandEndpoint>)
49-
console.log(endpoints, command, endpoints[command.command])
50-
5149
this.#commandDefinition = endpoints[command.command]
5250
this.command = command
5351
})
@@ -58,8 +56,6 @@ export class DevtoolsSource extends Element {
5856
return html`<section class="flex items-center justify-center text-sm w-full h-full">Please select a command to view details!</section>`
5957
}
6058

61-
console.log('HA', this.#commandDefinition)
62-
6359
return html`
6460
<section class="flex flex-column border-b-[1px] border-b-panelBorder px-2 py-1">
6561
<h1 class="font-bold">${this.command.command}</h1>

0 commit comments

Comments
 (0)