arvo-core 2.1.8 → 2.1.9

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.
@@ -101,9 +101,9 @@ exports.ArvoOpenTelemetry = ArvoOpenTelemetry;
101
101
  */
102
102
  var logToSpan = function (params, span) {
103
103
  if (span === void 0) { span = api_1.trace.getActiveSpan(); }
104
- var toLog = __assign(__assign({}, params), { timestamp: performance.now() });
104
+ var toLog = __assign(__assign({}, params), { 'log.severity': params.level, 'log.message': params.message, 'log.timestamp': performance.now() });
105
105
  if (span) {
106
- span.addEvent('log_message', toLog);
106
+ span.addEvent('log', toLog);
107
107
  }
108
108
  else {
109
109
  console.log(JSON.stringify(toLog, null, 2));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arvo-core",
3
- "version": "2.1.8",
3
+ "version": "2.1.9",
4
4
  "description": "This core package contains all the core classes and components of the Arvo Event Driven System",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {