Skip to content
This repository has been archived by the owner on Oct 24, 2022. It is now read-only.

Commit

Permalink
remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
mamadou committed Sep 2, 2021
1 parent 77d9f01 commit 4008833
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion lib/Adaptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,6 @@ const destroy = (0, _lodashFp.curry)(function (sObject, attrs, options, state) {
failOnError
} = options;
console.info(`Deleting ${sObject} records`);
console.info('Attrs', finalAttrs);
return connection.sobject(sObject).del(finalAttrs).then(function (result) {
const successes = result.filter(r => r.success);
console.log('Sucessfully deleted: ', JSON.stringify(successes, null, 2));
Expand Down
1 change: 0 additions & 1 deletion src/Adaptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ export const destroy = curry(function (sObject, attrs, options, state) {
const finalAttrs = expandReferences(attrs)(state);
const { failOnError } = options;
console.info(`Deleting ${sObject} records`);
console.info('Attrs', finalAttrs);

return connection
.sobject(sObject)
Expand Down

0 comments on commit 4008833

Please sign in to comment.