diff options
| author | Ritabrata Das <[email protected]> | 2025-02-11 23:41:20 +0530 |
|---|---|---|
| committer | Ritabrata Das <[email protected]> | 2025-02-11 23:41:20 +0530 |
| commit | c222abd31f5f23df6ee549fe2acf7e46dd53219b (patch) | |
| tree | 42ca4485c45f65b27129295743e7e32fe6255c1f /lib | |
| parent | 328ed234d9c5ce96c2b8079b08e91c6064bb6ff2 (diff) | |
Remove print statements with logging
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/discordSync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/discordSync.py b/lib/discordSync.py index 9fe4f00..dc94bbd 100644 --- a/lib/discordSync.py +++ b/lib/discordSync.py @@ -57,7 +57,7 @@ def on_new_message(message): username = author['username'] content = message['content'] - print(f'New Discord message from {username}: {content}') + debug(f'New Discord message from {username}: {content}') # Asynchronous function to monitor a Discord channel for new messages async def monitor_channel(channel_id, playerList:list): |
