Skip to content

Commit

Permalink
chore: remove logs from development (#156)
Browse files Browse the repository at this point in the history
  • Loading branch information
BobTheBuidler authored Dec 17, 2024
1 parent ff34d35 commit bfa6eb8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions eth_portfolio/_ledgers/address.py
Original file line number Diff line number Diff line change
Expand Up @@ -480,8 +480,6 @@ async def _load_new_objects(self, _: Block, end_block: Block) -> AsyncIterator[T
def _ensure_workers(self, num_workers: int) -> None:
len_workers = len(self._workers)
if len_workers < num_workers:
logger.info("ensuring %s workers for %s", num_workers, self)

worker_fn = self.__worker_fn
address = self.address
load_prices = self.load_prices
Expand All @@ -492,7 +490,6 @@ def _ensure_workers(self, num_workers: int) -> None:
create_task(worker_fn(address, load_prices, queue_get, put_ready))
for _ in range(num_workers - len_workers)
)
logger.info(f"{self} workers: {self._workers}")

@staticmethod
async def __worker_fn(
Expand Down

0 comments on commit bfa6eb8

Please sign in to comment.