mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-07-13 14:26:37 +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:
parent
d648159f43
commit
e94702349b
@ -59,7 +59,7 @@ export abstract class GrpcClientProvider<C> {
|
|||||||
const client = await this.createClient(this._port);
|
const client = await this.createClient(this._port);
|
||||||
this._client = client;
|
this._client = client;
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
this.logger.error('Could create client for gRPC.', error)
|
this.logger.error('Could not create client for gRPC.', error)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user