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
Copy file name to clipboardExpand all lines: docs/src/Guides/25 Error Tracking.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,13 @@ So, you've finally got your bot running on a server somewhere. Chances are, you
4
4
5
5
You're going to want to have some way of tracking if errors occur.
6
6
7
+
# Sending inline tracebacks
8
+
9
+
By default, if a command throws an uncaught exception, it'll send the traceback to the user. This is very useful when in development, but doesn't help you once you've gone public, and might not be in the same servers as your errors. Non-technical users may also find it confusing to see trackbacks instead of user-friendly error messages.
10
+
11
+
If you wish to turn this off, create your client with `Client(..., send_command_tracebacks=False)`
0 commit comments