Skip to content

Commit 5d93a74

Browse files
author
Akos Kitta
committed
do not parse the CLI log JSON, use as is.
Signed-off-by: Akos Kitta <[email protected]>
1 parent ab09f1e commit 5d93a74

File tree

2 files changed

+1
-155
lines changed

2 files changed

+1
-155
lines changed

arduino-ide-extension/src/node/arduino-daemon-impl.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import { environment } from '@theia/application-package/lib/environment';
1313
import { EnvVariablesServer } from '@theia/core/lib/common/env-variables';
1414
import { BackendApplicationContribution } from '@theia/core/lib/node/backend-application';
1515
import { ArduinoDaemon, NotificationServiceServer } from '../common/protocol';
16-
import { DaemonLog } from './daemon-log';
1716
import { CLI_CONFIG } from './cli-config';
1817
import { getExecPath, spawnCommand } from './exec-util';
1918

@@ -256,7 +255,7 @@ export class ArduinoDaemonImpl
256255
}
257256

258257
protected onData(message: string): void {
259-
DaemonLog.log(this.logger, message);
258+
this.logger.info(message);
260259
}
261260

262261
protected onError(error: any): void {

arduino-ide-extension/src/node/daemon-log.ts

-153
This file was deleted.

0 commit comments

Comments
 (0)