Remove warning which is printed by the store

This commit is contained in:
Matthias Beyer 2017-09-09 21:14:08 +02:00
parent 21440d58aa
commit b682e7f8db
1 changed files with 0 additions and 3 deletions

View File

@ -264,9 +264,6 @@ impl Store {
debug!("Building new Store object");
if !location.exists() {
if !config_implicit_store_create_allowed(store_config.as_ref()) {
warn!("Implicitely creating store directory is denied");
warn!(" -> Either because configuration does not allow it");
warn!(" -> or because there is no configuration");
return Err(SE::from_kind(SEK::CreateStoreDirDenied))
.chain_err(|| SEK::FileError)
.chain_err(|| SEK::IoError);