Skip to content

Commit 93dc4d8

Browse files
author
Akos Kitta
committed
ignore the arduino LS output channel.
Signed-off-by: Akos Kitta <[email protected]>
1 parent 5087ff0 commit 93dc4d8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Diff for: arduino-ide-extension/src/browser/theia/plugin-ext/output-channel-registry-main.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1-
import { injectable, inject } from '@theia/core/shared/inversify';
1+
import {
2+
injectable,
3+
inject,
4+
postConstruct,
5+
} from '@theia/core/shared/inversify';
26
import { CommandService } from '@theia/core/lib/common/command';
37
import { OutputCommands } from '@theia/output/lib/browser/output-commands';
48
import { PluginInfo } from '@theia/plugin-ext/lib/common/plugin-api-rpc';
59
import { OutputChannelRegistryMainImpl as TheiaOutputChannelRegistryMainImpl } from '@theia/plugin-ext/lib/main/browser/output-channel-registry-main';
610

711
@injectable()
812
export class OutputChannelRegistryMainImpl extends TheiaOutputChannelRegistryMainImpl {
13+
@postConstruct()
14+
protected init(): void {
15+
console.log('init');
16+
}
917
@inject(CommandService)
1018
protected override readonly commandService: CommandService;
1119

0 commit comments

Comments
 (0)