fix(core): update

This commit is contained in:
Philipp Kunz 2018-11-04 15:37:55 +01:00
parent 00e1b8d862
commit 9e8efc7dea
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ tap.test('should create a standard log message', async () => {
containerName: 'ci-mojoio-logdna',
environment: 'test',
runtime: 'node',
zone: 'ship.zone'
zone: 'shipzone'
},
message: 'this is an awesome log message :)'
});

View File

@ -70,7 +70,7 @@ export class LogdnaMessage {
env: smartlogPackageArg.context.environment,
hostname: smartlogPackageArg.context.zone,
level: smartlogPackageArg.level,
app: smartlogPackageArg.context.zone,
app: smartlogPackageArg.context.containerName,
tags: (() => {
const tagArray: string[] = [];
tagArray.push(smartlogPackageArg.context.company);