@snowtop/ent 0.1.0-alpha119 → 0.1.0-alpha120

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/core/ent.js +1 -1
  2. package/package.json +1 -1
package/core/ent.js CHANGED
@@ -609,7 +609,7 @@ async function performRawQuery(query, values, logValues) {
609
609
  catch (e) {
610
610
  if (_logQueryWithError) {
611
611
  const msg = e.message;
612
- throw new Error(`error \`${msg}\` running query: \`${query}\``);
612
+ throw new Error(`error \`${msg}\` running query: \`${query}\` with values: \`${logValues}\``);
613
613
  }
614
614
  throw e;
615
615
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@snowtop/ent",
3
- "version": "0.1.0-alpha119",
3
+ "version": "0.1.0-alpha120",
4
4
  "description": "snowtop ent framework",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",