diff options
| author | Owen Jacobson <owen@grimoire.ca> | 2024-11-08 17:28:48 -0500 |
|---|---|---|
| committer | Owen Jacobson <owen@grimoire.ca> | 2024-11-08 17:28:48 -0500 |
| commit | 7a26a75506de82ba1e2e0567f8f96fc2784874e9 (patch) | |
| tree | 54d696bce7f64590f1d24bf496f55813a0e311b6 /src/error.rs | |
| parent | b66bded4c90437503a25fe89e16d15422029dc0b (diff) | |
Rename the project to `pilcrow`.
Diffstat (limited to 'src/error.rs')
| -rw-r--r-- | src/error.rs | 2 |
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() } } |
