fable 3.1.47 → 3.1.48

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.47",
3
+ "version": "3.1.48",
4
4
  "description": "A service dependency injection, configuration and logging library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -63,7 +63,7 @@ class ExpressionParserValueMarshal extends libExpressionParserOperationBase
63
63
  tmpToken.Value = tmpValue;
64
64
  tmpToken.Resolve = true;
65
65
  tmpResults.ExpressionParserLog.push(`WARNING: ExpressionParser.substituteValuesInTokenizedObjects found no value for the symbol hash or address ${tmpToken.Token} at index ${i}`);
66
- this.log.warn(tmpResults.ExpressionParserLog[tmpResults.ExpressionParserLog.length-1]);
66
+ if (this.LogNoisiness > 1) this.log.warn(tmpResults.ExpressionParserLog[tmpResults.ExpressionParserLog.length-1]);
67
67
  continue;
68
68
  }
69
69
  else
@@ -110,13 +110,13 @@ class ExpressionParserValueMarshal extends libExpressionParserOperationBase
110
110
  if (!tmpValue)
111
111
  {
112
112
  tmpResults.ExpressionParserLog.push(`WARNING: ExpressionParser.substituteValuesInTokenizedObjects found no value for the state address ${tmpToken.Token} at index ${i}`);
113
- this.log.warn(tmpResults.ExpressionParserLog[tmpResults.ExpressionParserLog.length-1]);
113
+ //this.log.warn(tmpResults.ExpressionParserLog[tmpResults.ExpressionParserLog.length-1]);
114
114
  continue;
115
115
  }
116
116
  else
117
117
  {
118
118
  //tmpResults.ExpressionParserLog.push(`INFO: ExpressionParser.substituteValuesInTokenizedObjects found a value [${tmpValue}] for the state address ${tmpToken.Token} at index ${i}`);
119
- this.log.info(tmpResults.ExpressionParserLog[tmpResults.ExpressionParserLog.length-1]);
119
+ //this.log.info(tmpResults.ExpressionParserLog[tmpResults.ExpressionParserLog.length-1]);
120
120
  try
121
121
  {
122
122
  let tmpValueParsed = new this.fable.Utility.bigNumber(tmpValue);