mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-08 01:48:32 +00:00
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.
This commit is contained in:
@@ -59,7 +59,7 @@ export abstract class GrpcClientProvider<C> {
|
||||
const client = await this.createClient(this._port);
|
||||
this._client = client;
|
||||
} catch (error) {
|
||||
this.logger.error('Could create client for gRPC.', error)
|
||||
this.logger.error('Could not create client for gRPC.', error)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user