aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/web/responses.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/web/responses.rs b/src/web/responses.rs
index 00af35a..9ea2251 100644
--- a/src/web/responses.rs
+++ b/src/web/responses.rs
@@ -62,6 +62,8 @@ pub(super) fn full<T: Into<Bytes>>(chunk: T) -> BoxBody<Bytes, Infallible> {
impl error::Error {
#[allow(clippy::too_many_lines)]
pub fn into_response(self) -> Response<BoxBody<Bytes, Infallible>> {
+ log::error!("{self}");
+
match self {
error::Error::ConfigParse { .. }
| error::Error::ProjectListRead { .. }