feat(bug): Improve bug reporting while keeping logs private

This commit is contained in:
Matthew Esposito 2024-06-19 14:45:32 -04:00
parent 5a13b9892b
commit 997cd8f829
3 changed files with 17 additions and 13 deletions

View file

@ -1029,7 +1029,7 @@ pub fn redirect(path: &str) -> Response<Body> {
/// Renders a generic error landing page.
pub async fn error(req: Request<Body>, msg: &str) -> Result<Response<Body>, String> {
error!("Error page rendered: {msg}");
error!("Error page rendered: {}", msg.split("|").next().unwrap_or_default());
let url = req.uri().to_string();
let body = ErrorTemplate {
msg: msg.to_string(),