mol_wire_lib 1.0.907 → 1.0.908

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/node.mjs CHANGED
@@ -825,7 +825,7 @@ var $;
825
825
  }
826
826
  }
827
827
  catch (e) {
828
- console.log(e.stack);
828
+ e.message += '\n' + e.stack;
829
829
  throw e;
830
830
  }
831
831
  }
package/node.test.js CHANGED
@@ -816,7 +816,7 @@ var $;
816
816
  }
817
817
  }
818
818
  catch (e) {
819
- console.log(e.stack);
819
+ e.message += '\n' + e.stack;
820
820
  throw e;
821
821
  }
822
822
  }