Skip to content

Commit e947023

Browse files
committed
Correct typo in gRPC client creation error message
Previously, when gRPC client creation failed, the incorrect error message was shown: root ERROR Could create client for gRPC. When the message is intended to have the opposite meaning.
1 parent d648159 commit e947023

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: arduino-ide-extension/src/node/grpc-client-provider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export abstract class GrpcClientProvider<C> {
5959
const client = await this.createClient(this._port);
6060
this._client = client;
6161
} catch (error) {
62-
this.logger.error('Could create client for gRPC.', error)
62+
this.logger.error('Could not create client for gRPC.', error)
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)