fix(core): update

This commit is contained in:
Philipp Kunz 2020-06-05 02:01:12 +00:00
parent 34fd838e80
commit 64a555748e
4 changed files with 4264 additions and 477 deletions

4717
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -27,17 +27,17 @@
"homepage": "https://gitlab.com/pushrocks/beautylog",
"dependencies": {
"@pushrocks/consolecolor": "^2.0.1",
"@pushrocks/smartlog-interfaces": "^2.0.2",
"@pushrocks/smartpromise": "^2.0.5"
"@pushrocks/smartlog-interfaces": "^2.0.13",
"@pushrocks/smartpromise": "^3.0.6"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.0.22",
"@gitzone/tsrun": "^1.1.13",
"@gitzone/tstest": "^1.0.15",
"@pushrocks/tapbundle": "^3.0.7",
"@types/node": "^10.12.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0"
"@gitzone/tsbuild": "^2.1.24",
"@gitzone/tsrun": "^1.2.12",
"@gitzone/tstest": "^1.0.33",
"@pushrocks/tapbundle": "^3.2.1",
"@types/node": "^14.0.11",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0"
},
"files": [
"ts/*",

View File

@ -25,7 +25,8 @@ tap.test('.log(message) should print a blue Dir message', async () => {
type: 'log',
level: 'info',
context: testLogContext,
message: 'this is a info log message'
message: 'this is a info log message',
correlationId: '123'
});
});

View File

@ -49,7 +49,8 @@ export class DestinationLocal implements ILogDestination {
runtime: 'node',
zone: 'undefined'
},
message: logTextArg
message: logTextArg,
correlationId: 'n/a'
});
}
}