@saber-usa/node-common 1.7.24 → 1.7.25

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 +1 -1
  2. package/src/astro.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saber-usa/node-common",
3
- "version": "1.7.24",
3
+ "version": "1.7.25",
4
4
  "description": "Common node functions for Saber",
5
5
  "main": "src/index.js",
6
6
  "type": "module",
package/src/astro.js CHANGED
@@ -1382,7 +1382,7 @@ const GetElsetUdlFromTle = (
1382
1382
  try {
1383
1383
  const tleResult = validateTle(l1, l2);
1384
1384
  if (!tleResult.ok) {
1385
- throw new Error(tleResult.errors.join("; "));
1385
+ throw new Error(`${tleResult.errors.join("; ")}: ${l1} | ${l2}`);
1386
1386
  }
1387
1387
 
1388
1388
  const elset = {};