fix(core): update

This commit is contained in:
Philipp Kunz 2020-06-11 10:35:20 +00:00
parent 65604d4ec0
commit ff33c9597a
3 changed files with 9 additions and 9 deletions

12
package-lock.json generated
View File

@ -1304,9 +1304,9 @@
}
},
"@pushrocks/smartlog-interfaces": {
"version": "2.0.15",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartlog-interfaces/-/smartlog-interfaces-2.0.15.tgz",
"integrity": "sha512-C9AQGs0QI2xmcIbb2A32rg1rebHavpXGJ1LXBSLpSvctyrBppxWjut7kihgU5nqxYYw+Cr+wl5DA1pSIPQ1R0w==",
"version": "2.0.20",
"resolved": "https://verdaccio.lossless.one/@pushrocks%2fsmartlog-interfaces/-/smartlog-interfaces-2.0.20.tgz",
"integrity": "sha512-PR3l5UVor+//UoeOLws7hX4AtL2eWEHUC4uvjRY9wkrZt3XxemzWzPYXXlBUrdr5DPqt1b7tKcOx8xyUoUei9g==",
"requires": {
"@apiglobal/typedrequest-interfaces": "^1.0.13"
}
@ -1834,9 +1834,9 @@
"dev": true
},
"@types/node": {
"version": "14.0.11",
"resolved": "https://verdaccio.lossless.one/@types%2fnode/-/node-14.0.11.tgz",
"integrity": "sha512-lCvvI24L21ZVeIiyIUHZ5Oflv1hhHQ5E1S25IRlKIXaRkVgmXpJMI3wUJkmym2bTbCe+WoIibQnMVAU3FguaOg==",
"version": "14.0.13",
"resolved": "https://verdaccio.lossless.one/@types%2fnode/-/node-14.0.13.tgz",
"integrity": "sha512-rouEWBImiRaSJsVA+ITTFM6ZxibuAlTuNOCyxVbwreu6k6+ujs7DfnU9o+PShFhET78pMBl3eH+AGSI5eOTkPA==",
"dev": true
},
"@types/portscanner": {

View File

@ -27,7 +27,7 @@
"homepage": "https://gitlab.com/pushrocks/beautylog",
"dependencies": {
"@pushrocks/consolecolor": "^2.0.1",
"@pushrocks/smartlog-interfaces": "^2.0.15",
"@pushrocks/smartlog-interfaces": "^2.0.20",
"@pushrocks/smartpromise": "^3.0.6"
},
"devDependencies": {
@ -35,7 +35,7 @@
"@gitzone/tsrun": "^1.2.12",
"@gitzone/tstest": "^1.0.33",
"@pushrocks/tapbundle": "^3.2.1",
"@types/node": "^14.0.11",
"@types/node": "^14.0.13",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0"
},

View File

@ -9,7 +9,7 @@ export class DestinationLocal implements ILogDestination {
* handles a log according to the smartlog standard
* @param logPackage
*/
public handleLog(logPackage: ILogPackage) {
public async handleLog(logPackage: ILogPackage) {
this.logToConsole(logPackage);
}