You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
async for message in channel.history(limit=10000000):
if message.author == bot.user:
time = f"{message.created_at.year}-{message.created_at.month}-{message.created_at.day} {message.created_at.hour}:{message.created_at.minute}:{message.created_at.second} UTC"
### Have to do time to get message time
LOGS.append(f"\n[{time}] {message.content}")
else:
### Have to do the get message time
time = f"{message.created_at.year}-{message.created_at.month}-{message.created_at.day} {message.created_at.hour}:{message.created_at.minute}:{message.created_at.second} UTC"