@rasifix/orienteering-utils 2.0.58 → 2.0.59

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.
@@ -65,7 +65,7 @@ var SolvFormat = /** @class */ (function () {
65
65
  };
66
66
  if (tokens.length - 12 < category.controls * 2) {
67
67
  // some crappy SOLV data...
68
- console.log("fix crappy data from SOLV - not enough tokens on line for runner " +
68
+ console.debug("fix crappy data from SOLV - not enough tokens on line for runner " +
69
69
  runner.fullName);
70
70
  for (var i = tokens.length; i < category.controls * 2 + 12; i++) {
71
71
  if (i % 2 === 0) {
@@ -92,7 +92,6 @@ var SolvFormat = /** @class */ (function () {
92
92
  }
93
93
  runner.splits.push({ code: tokens[i_1], time: time });
94
94
  }
95
- console.log("adding Zi split for runner " + runner.fullName, runner.time);
96
95
  runner.splits.push({ code: "Zi", time: runner.time });
97
96
  category.runners.push(runner);
98
97
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rasifix/orienteering-utils",
3
- "version": "2.0.58",
3
+ "version": "2.0.59",
4
4
  "description": "utility functions for orienteering result analyzis",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",