From 34e1e6b68870ae258f34c0d2b3d900c5118a6cfc Mon Sep 17 00:00:00 2001 From: William Lane Date: Sun, 19 Mar 2023 19:07:17 -0700 Subject: [PATCH] troubleshoot env vars --- app/discord_bot/connect_discord.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/discord_bot/connect_discord.py b/app/discord_bot/connect_discord.py index dd97ad9..ab6a839 100644 --- a/app/discord_bot/connect_discord.py +++ b/app/discord_bot/connect_discord.py @@ -5,6 +5,7 @@ from app.mabel.connect_openai import chatgpt_response load_dotenv() discord_token=os.getenv('DISCORD_TOKEN') +print("DISCORD_TOKEN: ", discord_token) class MyClient(discord.Client): async def on_ready(self): print('Logged in as: ', self.user)