@flowcore/data-pump 0.2.0 → 0.2.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.2.1](https://github.com/flowcore-io/data-pump/compare/v0.2.0...v0.2.1) (2025-02-20)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * remove usage of console ([29f747c](https://github.com/flowcore-io/data-pump/commit/29f747c8ec0f41ab39766df9ef25a8b6fcf6fc91))
9
+
3
10
  ## [0.2.0](https://github.com/flowcore-io/data-pump/compare/v0.1.11...v0.2.0) (2025-02-20)
4
11
 
5
12
 
@@ -94,7 +94,7 @@ export class DataPump {
94
94
  eventId: lastEventId,
95
95
  eventBufferReached: false,
96
96
  };
97
- console.log("stop at", this.stopAt);
97
+ this.logger?.debug("stop at", `${this.stopAt.timeBucket} @ ${this.stopAt.eventId}`);
98
98
  }
99
99
  const newState = await this.options.stateManager.getState();
100
100
  if (!newState) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flowcore/data-pump",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Flowcore Data Pump",
5
5
  "homepage": "https://github.com/flowcore-io/flowcore-data-pump#readme",
6
6
  "repository": {
@@ -97,7 +97,7 @@ class DataPump {
97
97
  eventId: lastEventId,
98
98
  eventBufferReached: false,
99
99
  };
100
- console.log("stop at", this.stopAt);
100
+ this.logger?.debug("stop at", `${this.stopAt.timeBucket} @ ${this.stopAt.eventId}`);
101
101
  }
102
102
  const newState = await this.options.stateManager.getState();
103
103
  if (!newState) {