made python unbuffered and added some status prints

This commit is contained in:
Ranomier 2022-03-16 14:26:22 +01:00
parent a62948a4d9
commit 5817492603
2 changed files with 4 additions and 0 deletions

View file

@ -26,6 +26,8 @@ BOT_DATA_DIR = os.getenv('BOT_DATA_DIR', '')
# Setup Bot
bot = commands.Bot(command_prefix='!')
print("bot starting ...")
# Bot Initialization
@bot.event
async def on_ready():
@ -337,3 +339,4 @@ async def roll(ctx, *, value: str = False):
bot.run(TOKEN)
print("script end")