fable 3.0.89 → 3.0.90

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.0.89",
3
+ "version": "3.0.90",
4
4
  "description": "An entity behavior management and API bundling library.",
5
5
  "main": "source/Fable.js",
6
6
  "scripts": {
@@ -122,7 +122,7 @@ class FableOperation extends libFableServiceBase
122
122
 
123
123
  writeOperationLog(pLogLevel, pLogText, pLogObject)
124
124
  {
125
- this.state.Log.push(`${new Date().toUTCString()} [${pLogLevel}]: ${pLogText}`);
125
+ this.state.Log.push(`[${new Date().toUTCString()}]-[${pLogLevel}]: ${pLogText}`);
126
126
 
127
127
  if (typeof(pLogObject) == 'object')
128
128
  {
@@ -140,7 +140,6 @@ class FableOperation extends libFableServiceBase
140
140
  }
141
141
  }
142
142
 
143
-
144
143
  trace(pLogText, pLogObject)
145
144
  {
146
145
  this.writeOperationLog('TRACE', pLogText, pLogObject);
@@ -358,12 +357,6 @@ class FableOperation extends libFableServiceBase
358
357
  }
359
358
  }
360
359
  }
361
- // logMemoryResourcesUsed()
362
- // {
363
- //
364
- // const tmpResourcesUsed = process.memoryUsage().heapUsed / 1024 / 1024;
365
- // this.info(`Memory usage at ${Math.round(tmpResourcesUsed * 100) / 100} MB`);
366
- // }
367
360
  /*
368
361
  * END OF --> Logging and Telemetry Helpers
369
362
  ************************************************************************/