Skip to content

Commit 49e26d8

Browse files
authored
docs: add missing quote in error tracking guide (#1366)
Signed-off-by: sami0596 <gamesteamdk@hotmail.com>
1 parent 914dd86 commit 49e26d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/Guides/25 Error Tracking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ from interactions.api.events import Error
1515

1616
@listen()
1717
async def on_error(error: Error):
18-
await bot.get_channel(LOGGING_CHANNEL_ID).send(f"```\n{error.source}\n{error.error}\n```)
18+
await bot.get_channel(LOGGING_CHANNEL_ID).send(f"```\n{error.source}\n{error.error}\n```")
1919
```
2020

2121
And this is great when debugging. But it consumes your rate limit, can run into the 2000 character message limit, and won't work on shards that don't contain your personal server. It's also very hard to notice patterns and can be noisy.

0 commit comments

Comments
 (0)