From 2b0c2c5fe69073f73bd31864514ad5730ad5889b Mon Sep 17 00:00:00 2001 From: rasul Date: Sun, 5 Apr 2020 12:05:09 -0500 Subject: [PATCH] get rid of commented out function that is now a macro in macros.rs --- src/result.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/result.rs b/src/result.rs index 6f214eb..2fb5536 100644 --- a/src/result.rs +++ b/src/result.rs @@ -14,14 +14,6 @@ use log::error; /// ``` pub type RudeResult = Result>; -/// Wrap `?` with an error message into the log. -/*pub fn try_log>, S: Into>( - result: Result, - message: S, -) -> RudeResult { - try_error(result, message, true) -}*/ - /// Wrap `?` with an error message to stdout. pub fn try_print>, S: Into>( result: Result,