From 72120a69dea72c823719495d77e9c2fe3fd934c7 Mon Sep 17 00:00:00 2001 From: Rob Patro Date: Mon, 26 Feb 2024 14:57:43 -0500 Subject: [PATCH] feat: working using new libradicl --- src/main.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.rs b/src/main.rs index b3c0292..969972e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -286,10 +286,10 @@ fn main() -> anyhow::Result<()> { input_map_info.set_extension("map_info.json"); if !input_map_info.exists() { ref_sig_json = None; - warn!(concat!("Expected the mapping info file {:?} to exist, but it doesn't. ", - "This is bad, and means that reference provenance signatures cannot be ", - "propagated to the output of piscem-infer. It is strongly recommended ", - "that you investigate why this file does not exist at the expected location."), + warn!("Expected the mapping info file {:?} to exist, but it doesn't. \ + This is bad, and means that reference provenance signatures cannot be \ + propagated to the output of piscem-infer. It is strongly recommended \ + that you investigate why this file does not exist at the expected location.", input_map_info); } else { let map_info_str = std::fs::read_to_string(&input_map_info)