backend-manager 5.0.13 → 5.0.14

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": "backend-manager",
3
- "version": "5.0.13",
3
+ "version": "5.0.14",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -426,7 +426,7 @@ BackendAssistant.prototype.errorify = function (e, options) {
426
426
  if (isBetween(options.code, 500, 599)) {
427
427
  self.error(newError);
428
428
  } else {
429
- self.log(`⚠️ Client error (${options.code}):`, newError);
429
+ self.log(`⚠️ Client error (${options.code}):`, newError.message, newError.stack);
430
430
  }
431
431
  }
432
432