Skip to content

Commit

Permalink
Reenable log line
Browse files Browse the repository at this point in the history
  • Loading branch information
4Kaylum committed Jan 18, 2024
1 parent 25680bc commit 8516cc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion novus/api/gateway/gateway.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ async def _loop(self, offset: int = 0) -> None:
await asyncio.sleep(self.sleep_time)
except asyncio.CancelledError:
return
# log.debug(self.fmt.format(shard=self.shard_id, time=self.sleep_time * (offset + 1)))
log.debug(self.fmt.format(shard=self.shard_id, time=self.sleep_time * (offset + 1)))
await self._loop(offset + 1)

async def __aenter__(self) -> None:
Expand Down

0 comments on commit 8516cc0

Please sign in to comment.