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
|
@@ -61,7 +61,9 @@ class FableServiceMath extends libFableServiceBase
|
|
|
61
61
|
}
|
|
62
62
|
catch (pError)
|
|
63
63
|
{
|
|
64
|
-
|
|
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
|
|