Add output where paths is set
This commit is contained in:
parent
2c97d6f194
commit
801622ecf2
1 changed files with 4 additions and 0 deletions
|
@ -103,6 +103,10 @@ impl<'a> Runtime<'a> {
|
||||||
let configpath = matches.value_of("config")
|
let configpath = matches.value_of("config")
|
||||||
.map_or_else(|| rtp.clone(), PathBuf::from);
|
.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) {
|
let cfg = match Configuration::new(&configpath) {
|
||||||
Err(e) => if e.err_type() != ConfigErrorKind::NoConfigFileFound {
|
Err(e) => if e.err_type() != ConfigErrorKind::NoConfigFileFound {
|
||||||
return Err(RuntimeErrorKind::Instantiate.into_error_with_cause(Box::new(e)));
|
return Err(RuntimeErrorKind::Instantiate.into_error_with_cause(Box::new(e)));
|
||||||
|
|
Loading…
Reference in a new issue