From a57176529cff5527c70458260975dfff1efcd1e4 Mon Sep 17 00:00:00 2001 From: Dominic Date: Mon, 24 Feb 2020 20:03:09 +0100 Subject: [PATCH] fix --- gotham_restful/src/result.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gotham_restful/src/result.rs b/gotham_restful/src/result.rs index 3d5cf44..00b4c62 100644 --- a/gotham_restful/src/result.rs +++ b/gotham_restful/src/result.rs @@ -132,7 +132,7 @@ impl From for ResourceError } #[cfg(feature = "errorlog")] -fn errorlog(e : E) +fn errorlog(e : E) { error!("The handler encountered an error: {}", e); }