From 0b6f676ec7f1d167c91bd0966f2a4e226912787e Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Fri, 5 Jun 2020 01:15:46 +0000 Subject: [PATCH] fix(core): update --- ts/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ts/index.ts b/ts/index.ts index b034087..8dc9cf8 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -68,11 +68,15 @@ export interface ILogPackage { * allows grouping of log messages */ correlationId: string; + /** + * the message to log + */ message: string; data?: T; } export interface ILogPackageDataRequest { + requestCorrelationId: string; url: string; pathname: string; method: string;