diff options
Diffstat (limited to 'src/http')
| -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 ffb1562..edc28a3 100644 --- a/src/http/mod.rs +++ b/src/http/mod.rs | |||
| @@ -332,7 +332,7 @@ impl Service<Request<Incoming>> for HttpService { | |||
| 332 | .unwrap()) | 332 | .unwrap()) |
| 333 | } | 333 | } |
| 334 | Err(e) => { | 334 | Err(e) => { |
| 335 | tracing::error!("Git handler error: {}", e); | 335 | // Errors are already logged at their source with full context |
| 336 | let error_msg = format!("Git error: {}", e); | 336 | let error_msg = format!("Git error: {}", e); |
| 337 | Ok(add_cors_headers(Response::builder()) | 337 | Ok(add_cors_headers(Response::builder()) |
| 338 | .status(e.status_code()) | 338 | .status(e.status_code()) |