We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09c6a5b commit 97ce339Copy full SHA for 97ce339
eggsplode/core.py
@@ -150,12 +150,10 @@ async def start(self, interaction: discord.Interaction):
150
self.last_interaction = interaction
151
self.inactivity_count = 0
152
self.started = True
153
- logger.info(
154
- "Game %s: Started.\nPlayers: %s\nRecipe: %s",
155
- self.id,
156
- self.players,
157
- self.config["recipe"],
158
- )
+ logger.info("Game %s: Started.", self.id)
+ logger.debug("Players: %s", self.players)
+ logger.debug("Recipe: %s", self.config["recipe"])
+ logger.debug("Hands: %s", self.hands)
159
await self.send(TextView("game_started"), interaction)
160
await self.events.turn_start()
161
await self.action_timer()
0 commit comments