s3db.js 7.3.9 → 7.3.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "s3db.js",
3
- "version": "7.3.9",
3
+ "version": "7.3.10",
4
4
  "description": "Use AWS S3, the world's most reliable document storage, as a database with this ORM.",
5
5
  "main": "dist/s3db.cjs.js",
6
6
  "module": "dist/s3db.es.js",
@@ -219,8 +219,8 @@ class BigqueryReplicator extends BaseReplicator {
219
219
  const { errors, response } = error;
220
220
  if (this.config.verbose) {
221
221
  console.error('[BigqueryReplicator] BigQuery insert error details:');
222
- if (errors) console.error('Errors:', JSON.stringify(errors, null, 2));
223
- if (response) console.error('Response:', JSON.stringify(response, null, 2));
222
+ if (errors) console.error(JSON.stringify(errors, null, 2));
223
+ if (response) console.error(JSON.stringify(response, null, 2));
224
224
  }
225
225
  throw error;
226
226
  }