Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Remove Heroku Reference from Debug Command #3292

Merged
merged 3 commits into from
Jul 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cogs/utility.py
Original file line number Diff line number Diff line change
@@ -416,7 +416,7 @@ async def debug(self, ctx):
title="Debug Logs:",
description="You don't have any logs at the moment.",
)
embed.set_footer(text="Go to Heroku to see your logs.")
embed.set_footer(text="Go to your console to see your logs.")
return await ctx.send(embed=embed)

messages = []
@@ -482,7 +482,7 @@ async def debug_hastebin(self, ctx):
color=self.bot.main_color,
description="Something's wrong. We're unable to upload your logs to hastebin.",
)
embed.set_footer(text="Go to Heroku to see your logs.")
embed.set_footer(text="Go to your console to see your logs.")
await ctx.send(embed=embed)

@debug.command(name="clear", aliases=["wipe"])