Skip to content

Commit

Permalink
rename logs and add to .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoury committed Aug 29, 2024
1 parent 7445fc4 commit e7ae0fa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,6 @@ temp*

# Prisma
prisma/.db
prisma/.db*
prisma/.db*
orchestrator/prisma/.db
orchestrator/prisma/.db*
4 changes: 2 additions & 2 deletions orchestrator/src/indexer/rooch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ export default class RoochIndexer {
this.orchestrator = this.keyPair.getRoochAddress().toHexAddress();
log.info(`Rooch Indexer initialized`);
log.info(`Chain ID: ${this.chainId}`);
log.info(`Oracle Address: ${this.oracleAddress}`);
log.info(`Orchestrator Address: ${this.orchestrator}`);
log.info(`Oracle Contract Address: ${this.oracleAddress}`);
log.info(`Orchestrator Oracle Node Address: ${this.orchestrator}`);
}

async fetchEvents<T>(
Expand Down

0 comments on commit e7ae0fa

Please sign in to comment.