summaryrefslogtreecommitdiff
path: root/src/handlers/error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/handlers/error.rs')
-rw-r--r--src/handlers/error.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/handlers/error.rs b/src/handlers/error.rs
index c6cefa2..bddd4f4 100644
--- a/src/handlers/error.rs
+++ b/src/handlers/error.rs
@@ -18,7 +18,7 @@ pub async fn handle(error: poise::FrameworkError<'_, Data, Report>) {
}
FrameworkError::Command { error, ctx } => {
- error!("Error in command {}:\n{error:?}", ctx.command().name);
+ error!("Error in command {}:\n{error}", ctx.command().name);
ctx.send(|c| {
c.embed(|e| {
e.title("Something went wrong!")
@@ -37,7 +37,7 @@ pub async fn handle(error: poise::FrameworkError<'_, Data, Report>) {
event,
framework: _,
} => {
- error!("Error while handling event {}:\n{error:?}", event.name());
+ error!("Error while handling event {}:\n{error}", event.name());
}
error => {