Skip to content

Commit

Permalink
Merge pull request #221 from dappradar/stdout_fixing
Browse files Browse the repository at this point in the history
delete stdout log
  • Loading branch information
Sonmezturk authored Oct 25, 2023
2 parents 67d6241 + 39f4806 commit 73d4b1c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
4 changes: 0 additions & 4 deletions src/factory/factory.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ export class FactoryService implements OnModuleInit {
const block = parseInt(req.block) - basicUtil.getDelay(req.chain);
const web3 = await this.web3ProviderService.getWeb3(req?.chain);
let tvlData;
console.log('req', req);

if (
req?.autointegrationParams?.autointegrated === 'false' ||
req?.autointegrationParams?.autointegrated === undefined
Expand Down Expand Up @@ -125,8 +123,6 @@ export class FactoryService implements OnModuleInit {
}

async onModuleInit() {
console.log(config);
console.log(JSON.stringify(config));
log.info({
message: `Node Urls: ${JSON.stringify(nodeUrls)} config:
${JSON.stringify(config)}`,
Expand Down
3 changes: 1 addition & 2 deletions src/util/logger/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ interface ILogger {

configure({
appenders: {
console: { type: 'console' },
logstash: {
type: `${__dirname}/appenders/logstashAppender`,
},
Expand All @@ -25,7 +24,7 @@ configure({
},
categories: {
default: {
appenders: ['console', '_slackError', '_logstash'],
appenders: ['_slackError', '_logstash'],
level: 'all',
},
},
Expand Down

0 comments on commit 73d4b1c

Please sign in to comment.