Skip to content

Commit

Permalink
refactor(processing): logger info -> debug
Browse files Browse the repository at this point in the history
  • Loading branch information
bludnic committed May 21, 2024
1 parent 4736389 commit 6581631
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export class OrderSynchronizerPollingWatcher extends OrderSynchronizerWatcher {
}

private async syncOrders() {
logger.info(
logger.debug(
`PollingWatcher: Start syncing order statuses of "${this.exchange.name}"`,
);
const processor = new ExchangeAccountProcessor(this.exchange);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class ExchangeAccountProcessor {
});

if (orders.length === 0) {
logger.info("ExchangeAccountProcessor: No orders in DB to synchronize");
logger.debug("ExchangeAccountProcessor: No orders in DB to synchronize");
return {
affectedBotsIds,
};
Expand Down

0 comments on commit 6581631

Please sign in to comment.