@rpcbase/server 0.244.0 → 0.245.0

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/package.json +1 -1
  2. package/rts/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpcbase/server",
3
- "version": "0.244.0",
3
+ "version": "0.245.0",
4
4
  "license": "SSPL-1.0",
5
5
  "main": "./index.js",
6
6
  "bin": {
package/rts/index.js CHANGED
@@ -165,7 +165,7 @@ const mongoose_txn_plugin = (schema, options) => {
165
165
  const txn_id = _get(ctx, ["req", "headers", "rts-txn-id"])
166
166
 
167
167
  if (!txn_id) {
168
- console.log(colors.yellow("Warning!"), "mongoose save request is missing txn_id this will cause issues with rts-client")
168
+ log(colors.yellow("Warning!"), "mongoose save request is missing txn_id this will cause issues with rts-client")
169
169
  } else {
170
170
  this.set("__txn_id", txn_id)
171
171
  }