From cdf6bc6fa5bd800c2877d406ff193a89bb1a3946 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 18 Jul 2016 15:44:34 +0200 Subject: [PATCH] Make warning more verbose, tell what kind of variable cannot be fetched --- libimagstore/src/configuration.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libimagstore/src/configuration.rs b/libimagstore/src/configuration.rs index 98c4ae5d..33e2dd6f 100644 --- a/libimagstore/src/configuration.rs +++ b/libimagstore/src/configuration.rs @@ -286,7 +286,7 @@ fn get_aspect_names_for_aspect_position(config_name: &'static str, value: &Optio _ => warn!("'{}' configuration key should contain Array, does not", config_name), }; }, - None => warn!("No store configuration"), + None => warn!("No store configuration, cannot get '{}'", config_name), _ => warn!("Configuration is not a table"), } v