@etsoo/shared 1.2.24 → 1.2.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.
@@ -266,7 +266,7 @@ var DomUtils;
266
266
  }
267
267
  }
268
268
  catch (e) {
269
- console.log(e);
269
+ console.error('DomUtils.downloadFile with error', e);
270
270
  }
271
271
  return false;
272
272
  }
package/lib/cjs/Utils.js CHANGED
@@ -438,7 +438,7 @@ var Utils;
438
438
  }
439
439
  }
440
440
  catch (e) {
441
- console.log('parseJsonArray', input, e);
441
+ console.error(`Utils.parseJsonArray ${input} with error`, e);
442
442
  }
443
443
  return;
444
444
  }
@@ -263,7 +263,7 @@ export var DomUtils;
263
263
  }
264
264
  }
265
265
  catch (e) {
266
- console.log(e);
266
+ console.error('DomUtils.downloadFile with error', e);
267
267
  }
268
268
  return false;
269
269
  }
package/lib/mjs/Utils.js CHANGED
@@ -432,7 +432,7 @@ export var Utils;
432
432
  }
433
433
  }
434
434
  catch (e) {
435
- console.log('parseJsonArray', input, e);
435
+ console.error(`Utils.parseJsonArray ${input} with error`, e);
436
436
  }
437
437
  return;
438
438
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@etsoo/shared",
3
- "version": "1.2.24",
3
+ "version": "1.2.25",
4
4
  "description": "TypeScript shared utilities and functions",
5
5
  "main": "lib/cjs/index.js",
6
6
  "module": "lib/mjs/index.js",
package/src/DomUtils.ts CHANGED
@@ -324,7 +324,7 @@ export namespace DomUtils {
324
324
  return true;
325
325
  }
326
326
  } catch (e) {
327
- console.log(e);
327
+ console.error('DomUtils.downloadFile with error', e);
328
328
  }
329
329
 
330
330
  return false;
package/src/Utils.ts CHANGED
@@ -593,7 +593,7 @@ export namespace Utils {
593
593
  return array;
594
594
  }
595
595
  } catch (e) {
596
- console.log('parseJsonArray', input, e);
596
+ console.error(`Utils.parseJsonArray ${input} with error`, e);
597
597
  }
598
598
  return;
599
599
  }