From 4b30234cb6e244b7d2e9459360f7d15edd78fc5f Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 11 Nov 2018 02:00:40 +0100 Subject: [PATCH] fix(core): update --- ts/elasticsearch.classes.elasticsearch.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/elasticsearch.classes.elasticsearch.ts b/ts/elasticsearch.classes.elasticsearch.ts index a781e10..d008b50 100644 --- a/ts/elasticsearch.classes.elasticsearch.ts +++ b/ts/elasticsearch.classes.elasticsearch.ts @@ -36,7 +36,7 @@ export class ElasticSearch { constructor(optionsArg: IElasticSearchConstructorOptions) { this.client = new ElasticClient({ host: this.computeHostString(optionsArg), - log: 'trace' + // log: 'trace' }); this.indexPrefix = optionsArg.indexPrefix; this.indexRetention = optionsArg.indexRetention; @@ -88,7 +88,7 @@ export class ElasticSearch { console.log(error); this.elasticScheduler.addFailedDoc(logPackageArg); } else { - console.log(`ElasticLog: ${logPackageArg.message}`); + // console.log(`ElasticLog: ${logPackageArg.message}`); } } );