@toa.io/storages.mongodb 1.0.0-alpha.68 → 1.0.0-alpha.69

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 +2 -2
  2. package/src/storage.js +0 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toa.io/storages.mongodb",
3
- "version": "1.0.0-alpha.68",
3
+ "version": "1.0.0-alpha.69",
4
4
  "description": "Toa MongoDB Storage Connector",
5
5
  "author": "temich <tema.gurtovoy@gmail.com>",
6
6
  "homepage": "https://github.com/toa-io/toa#readme",
@@ -27,5 +27,5 @@
27
27
  "openspan": "1.0.0-alpha.67",
28
28
  "saslprep": "1.0.3"
29
29
  },
30
- "gitHead": "5906cac0be7d9802090d4670e16ee71cb03aedc4"
30
+ "gitHead": "1a23d550c737fbe1d4d2b960f9613c8a330d2de7"
31
31
  }
package/src/storage.js CHANGED
@@ -173,8 +173,6 @@ class Storage extends Connector {
173
173
 
174
174
  const sparse = this.checkFields(Object.keys(fields))
175
175
 
176
- console.debug('Database query', { method: 'createIndex', fields, name, sparse })
177
-
178
176
  await this.#collection.createIndex(fields, { name, sparse })
179
177
 
180
178
  indexes.push(name)