We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd00eee commit 9c67068Copy full SHA for 9c67068
src/client.js
@@ -167,9 +167,10 @@ export class SalesforceClient {
167
168
const { data } = result;
169
if (!wasSuccessfulSoapRequest(data)) {
170
+ const msg = 'Could not setup remote site in Salesforce';
171
const error = {
- msg: 'Could not setup remote site in Salesforce',
172
data,
173
+ msg,
174
};
175
console.error(msg);
176
console.error(data);
@@ -220,9 +221,10 @@ export class SalesforceClient {
220
221
222
223
224
+ const msg = 'Could not deploy Apex code to Salesforce';
225
- msg: 'Could not deploy Apex code to Salesforce',
226
227
228
229
230
0 commit comments