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}`); } } );