From 801622ecf2fc388de746820320b458e9403a8530 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 20 Jun 2017 19:12:14 +0200 Subject: [PATCH] Add output where paths is set --- libimagrt/src/runtime.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libimagrt/src/runtime.rs b/libimagrt/src/runtime.rs index f8f29a2d..e4597c73 100644 --- a/libimagrt/src/runtime.rs +++ b/libimagrt/src/runtime.rs @@ -103,6 +103,10 @@ impl<'a> Runtime<'a> { let configpath = matches.value_of("config") .map_or_else(|| rtp.clone(), PathBuf::from); + debug!("RTP path = {:?}", rtp); + debug!("Store path = {:?}", storepath); + debug!("Config path = {:?}", configpath); + let cfg = match Configuration::new(&configpath) { Err(e) => if e.err_type() != ConfigErrorKind::NoConfigFileFound { return Err(RuntimeErrorKind::Instantiate.into_error_with_cause(Box::new(e)));