Merge pull request #563 from matthiasbeyer/libimagstore/more-verbose-warning

Make warning more verbose, tell what kind of variable cannot be fetched
This commit is contained in:
Matthias Beyer 2016-07-21 20:00:28 +02:00 committed by GitHub
commit 8bdb3716ed
1 changed files with 1 additions and 1 deletions

View File

@ -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), _ => 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"), _ => warn!("Configuration is not a table"),
} }
v v