mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Add error logging when rendering the Error page
This commit is contained in:
parent
fcde6ff689
commit
3609564db0
1 changed files with 2 additions and 0 deletions
|
@ -6,6 +6,7 @@ use crate::{client::json, server::RequestExt};
|
|||
use askama::Template;
|
||||
use cookie::Cookie;
|
||||
use hyper::{Body, Request, Response};
|
||||
use log::error;
|
||||
use once_cell::sync::Lazy;
|
||||
use regex::Regex;
|
||||
use rust_embed::RustEmbed;
|
||||
|
@ -983,6 +984,7 @@ pub fn redirect(path: String) -> Response<Body> {
|
|||
|
||||
/// Renders a generic error landing page.
|
||||
pub async fn error(req: Request<Body>, msg: impl ToString) -> Result<Response<Body>, String> {
|
||||
error!("Error page rendered: {}", msg.to_string());
|
||||
let url = req.uri().to_string();
|
||||
let body = ErrorTemplate {
|
||||
msg: msg.to_string(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue