@fireproof/core 0.20.4-dev-preview-1 → 0.20.4-dev-preview-2

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/index.js CHANGED
@@ -1873,7 +1873,6 @@ var Index = class {
1873
1873
  }
1874
1874
  if (this.mapFnString) {
1875
1875
  if (this.mapFnString !== meta.map) {
1876
- this.logger.Warn().Msg(`applying different mapFn meta: old mapFnString ${this.mapFnString} new mapFnString ${meta.map}`);
1877
1876
  this.mapFnString = meta.map;
1878
1877
  mapFnChanged = true;
1879
1878
  }
@@ -1890,7 +1889,6 @@ var Index = class {
1890
1889
  if (this.mapFn) {
1891
1890
  if (mapFn) {
1892
1891
  if (this.mapFn.toString() !== mapFn.toString()) {
1893
- this.logger.Warn().Msg("applying different mapFn, resetting index");
1894
1892
  this.mapFn = mapFn;
1895
1893
  this.mapFnString = mapFn.toString();
1896
1894
  mapFnChanged = true;
@@ -1902,7 +1900,6 @@ var Index = class {
1902
1900
  }
1903
1901
  if (this.mapFnString) {
1904
1902
  if (this.mapFnString !== mapFn.toString()) {
1905
- this.logger.Warn().Str("old mapFnString", this.mapFnString).Str("new mapFn", mapFn.toString()).Msg("applying different mapFn, resetting index");
1906
1903
  mapFnChanged = true;
1907
1904
  }
1908
1905
  } else {
@@ -7226,7 +7223,7 @@ function buildResDelWAL(msgCtx, req, ctx) {
7226
7223
 
7227
7224
  // src/version.ts
7228
7225
  var PACKAGE_VERSION = Object.keys({
7229
- "0.20.4-dev-preview-1": "xxxx"
7226
+ "0.20.4-dev-preview-2": "xxxx"
7230
7227
  })[0];
7231
7228
  export {
7232
7229
  CRDTImpl,