wingbot-mongodb 4.0.0-alpha.2 → 4.0.0-alpha.4
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 +1 -1
- package/src/BaseStorage.js +1 -0
package/package.json
CHANGED
package/src/BaseStorage.js
CHANGED
|
@@ -422,6 +422,7 @@ class BaseStorage {
|
|
|
422
422
|
}
|
|
423
423
|
const secret = await Promise.resolve(this._secret);
|
|
424
424
|
const objToSign = this._objectToSign(object);
|
|
425
|
+
console.log('_SIGN', objToSign);
|
|
425
426
|
const sign = this._signWithSecret(objToSign, secret);
|
|
426
427
|
|
|
427
428
|
return Object.assign(objToSign, {
|