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
|
@@ -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(
|
|
223
|
-
if (response) console.error(
|
|
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
|
}
|