@shushed/helpers 0.0.60 → 0.0.61

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -387,6 +387,8 @@ var Logging = class {
387
387
  this.errorFn = (...args) => log.entry(Object.assign({
388
388
  severity: import_logging.Severity.error
389
389
  }, this.metadata), ...args);
390
+ this.logFn = (...args) => console.log(JSON.stringify(args));
391
+ this.errorFn = (...args) => console.error(JSON.stringify(args));
390
392
  } else {
391
393
  this.logFn = console.log;
392
394
  this.errorFn = console.error;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shushed/helpers",
3
- "version": "0.0.60",
3
+ "version": "0.0.61",
4
4
  "author": "",
5
5
  "license": "UNLICENSED",
6
6
  "description": "",