fix(core): update

This commit is contained in:
Philipp Kunz 2020-06-05 01:15:46 +00:00
parent 55e3f0370e
commit 0b6f676ec7

View File

@ -68,11 +68,15 @@ export interface ILogPackage<T = unknown> {
* 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;