From a3ca746e869b0a9790f1767547808056fae2fa6f Mon Sep 17 00:00:00 2001 From: Philipp Date: Sat, 1 Oct 2022 09:55:15 +0200 Subject: [PATCH] changed phrasing of logging output --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 514b760..8f172a1 100644 --- a/src/main.py +++ b/src/main.py @@ -87,7 +87,7 @@ def main(args): try: database.create_reserved_slot(mysql, user, steam_id.steam2(1)) await ctx.send(f"You just claimed a reserved slot for: `{steam_id.steam2(1)}`!") - logger.debug(f"{steam_id.steam2(1)} has just claimed a reserved slot.") + logger.debug(f"{user.id} with SteamID: {steam_id.steam2(1)} has just claimed a reserved slot.") except Exception as err: if str(err) != "Duplicate entrys": await ctx.send(f"Something failed with the database, please try again later.", ephemeral=True)