summaryrefslogtreecommitdiffstats
path: root/libimagrt
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-04-22 15:06:44 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-05-23 15:12:57 +0200
commitb4b3a0ede852007d557ef31911756c3786c21daa (patch)
treebbd5a4b2ad13ddfdf0f7f64e0f3eaec51c37be2e /libimagrt
parent88e9519a00d294393119e13782317b7a9f90dd2d (diff)
Only warn if there is no config file
Diffstat (limited to 'libimagrt')
-rw-r--r--libimagrt/src/runtime.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/libimagrt/src/runtime.rs b/libimagrt/src/runtime.rs
index 5087d063..57540b76 100644
--- a/libimagrt/src/runtime.rs
+++ b/libimagrt/src/runtime.rs
@@ -75,7 +75,8 @@ impl<'a> Runtime<'a> {
let cause : Option<Box<Error>> = Some(Box::new(e));
return Err(RuntimeError::new(RuntimeErrorKind::Instantiate, cause));
} else {
- trace_error(&e);
+ warn!("No config file found.");
+ warn!("Continuing without configuration file");
None
},