visang-tracker 0.9.7 → 0.9.8

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/dist/index.js +5 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -40,11 +40,11 @@ const flushLogQueue = async () => {
40
40
  return;
41
41
  isFlushing = true;
42
42
  try {
43
- while (logQueue.length > 0) {
44
- const batch = logQueue.splice(0, LOG_BATCH_MAX);
45
- await transportBatch(batch);
46
- persistQueue();
47
- }
43
+ // while (logQueue.length > 0) {
44
+ const batch = logQueue.splice(0, LOG_BATCH_MAX);
45
+ await transportBatch(batch);
46
+ persistQueue();
47
+ // }
48
48
  }
49
49
  finally {
50
50
  isFlushing = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "visang-tracker",
3
- "version": "0.9.7",
3
+ "version": "0.9.8",
4
4
  "description": "Lightweight logging and tracking helper for Visang apps.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",