fable 3.1.11 → 3.1.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fable",
3
- "version": "3.1.11",
3
+ "version": "3.1.12",
4
4
  "description": "A service dependency injection, configuration and logging library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -61,7 +61,9 @@ class FableServiceMath extends libFableServiceBase
61
61
  }
62
62
  catch (pError)
63
63
  {
64
- this.log.warn(`Error parsing number (type ${typeof (pValue)}): ${pError}`);
64
+ // TODO: This seems more correct -- we can add a silent or noisy parameter if we want this to export.
65
+ // Reason: Currently this is absolutely obliterating logs in the data integrations from bad data sources.
66
+ //this.log.warn(`Error parsing number (type ${typeof (pValue)}): ${pError}`);
65
67
  tmpNumber = (typeof (pNonNumberValue) === 'undefined') ? "0.0" : pNonNumberValue;
66
68
  }
67
69