summaryrefslogtreecommitdiff
path: root/src/error.rs
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2024-11-11 14:45:39 -0500
committerKit La Touche <kit@transneptune.net>2024-11-11 14:45:39 -0500
commit02c1866661de98b325b3266015d024b1e4f6c3b6 (patch)
tree9def14624d0fab63cf4986f761326bb9fcda67d9 /src/error.rs
parente43cc0d606956c99ab109a63866f48a67aea6515 (diff)
parenta417c62edd4d3c07ba37b01835e89ed650489e09 (diff)
Merge branch 'main' into prop/message-delete
Diffstat (limited to 'src/error.rs')
-rw-r--r--src/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/error.rs b/src/error.rs
index f3399c6..7483f00 100644
--- a/src/error.rs
+++ b/src/error.rs
@@ -40,7 +40,7 @@ impl fmt::Display for Internal {
impl IntoResponse for Internal {
fn into_response(self) -> Response {
let Self(id, error) = &self;
- eprintln!("hi: [{id}] {error}");
+ eprintln!("pilcrow: [{id}] {error}");
(StatusCode::INTERNAL_SERVER_ERROR, self.to_string()).into_response()
}
}