From 804e777973b452a40dc2c32f5d1c7474e8ab3423 Mon Sep 17 00:00:00 2001 From: Valentine Wallace Date: Wed, 17 Feb 2021 12:04:50 -0500 Subject: [PATCH] print error --- background-processor/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/background-processor/src/lib.rs b/background-processor/src/lib.rs index 998a884e..08534e13 100644 --- a/background-processor/src/lib.rs +++ b/background-processor/src/lib.rs @@ -231,8 +231,8 @@ mod tests { continue } }, - Err(_) => { - println!("VMW: continuing 2"); + Err(e) => { + println!("VMW: continuing 2: err: {:?}", e); continue } } -- 2.30.2