diff --git a/redbot/cogs/downloader/downloader.py b/redbot/cogs/downloader/downloader.py index 84afca173..3affc716d 100644 --- a/redbot/cogs/downloader/downloader.py +++ b/redbot/cogs/downloader/downloader.py @@ -506,7 +506,12 @@ class Downloader(commands.Cog): except errors.ExistingGitRepo: await ctx.send(_("That git repo has already been added under another name.")) except errors.CloningError as err: - await ctx.send(_("Something went wrong during the cloning process.")) + await ctx.send( + _( + "Something went wrong during the cloning process." + " See logs for more information." + ) + ) log.exception( "Something went wrong whilst cloning %s (to revision: %s)", repo_url, @@ -520,7 +525,7 @@ class Downloader(commands.Cog): await ctx.send( _( "Something went wrong trying to add that repo." - " Your repo name might have an invalid character." + " See logs for more information." ) ) else: