From 03b4fd44baacf275e64d12bd48a7b47ca3cf11c2 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 30 Jul 2021 18:33:26 +0100 Subject: [PATCH] fix error Signed-off-by: Ian Jackson --- src/reporter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reporter.rs b/src/reporter.rs index 951fd2d..841fd08 100644 --- a/src/reporter.rs +++ b/src/reporter.rs @@ -16,7 +16,7 @@ impl Reporter { }, Err(e) => { // xxx something something error - error!("ERROR {:?}R", e); + error!("ERROR {:?}", e); None }, } -- 2.30.2