diff options
Diffstat (limited to 'src/http/mod.rs')
| -rw-r--r-- | src/http/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/mod.rs b/src/http/mod.rs index cfd7c52..76ffef3 100644 --- a/src/http/mod.rs +++ b/src/http/mod.rs | |||
| @@ -345,7 +345,7 @@ impl Service<Request<Incoming>> for HttpService { | |||
| 345 | .unwrap()) | 345 | .unwrap()) |
| 346 | } | 346 | } |
| 347 | Err(e) => { | 347 | Err(e) => { |
| 348 | tracing::error!("Git handler error: {}", e); | 348 | // Errors are already logged at their source with full context |
| 349 | let error_msg = format!("Git error: {}", e); | 349 | let error_msg = format!("Git error: {}", e); |
| 350 | Ok(add_cors_headers(Response::builder()) | 350 | Ok(add_cors_headers(Response::builder()) |
| 351 | .status(e.status_code()) | 351 | .status(e.status_code()) |