verbose moved

This commit is contained in:
Wolfgang Hottgenroth 2018-05-14 15:31:22 +02:00
parent 0020b399a4
commit fe862f5dc5
Signed by: wn
GPG Key ID: B586EAFCDF2F65F4
2 changed files with 3 additions and 3 deletions

View File

@ -4,14 +4,14 @@
"brokerPass": "",
"brokerCa": "",
"mongodbUrl": "mongodb://localhost/smarthome",
"verbose": true,
"instances": [
{
"instanceId": "testInstance",
"collection": "testcollection",
"topics": [ "topic1", "topic2", "topic3" ],
"encapsulate": true,
"parsePayload": true
"parsePayload": true,
"verbose": true
}
]
}

View File

@ -13,7 +13,7 @@ config.dict.instances.forEach((v: any) => {
brokerPass: config.dict.brokerPass,
brokerCa: config.dict.brokerCa,
mongodbUrl: config.dict.mongodbUrl,
verbose: config.dict.verbose,
verbose: v.verbose,
instanceId: v.instanceId,
collection: v.collection,
topics: v.topics,