Merge branch 'fix/20669-master-azure-log'

This commit is contained in:
David Pilato 2016-10-06 16:00:43 +02:00
commit 591a8d4ec6
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ public class AzureStorageServiceImpl extends AbstractComponent implements AzureS
blobContainer.createIfNotExists(); blobContainer.createIfNotExists();
} catch (IllegalArgumentException e) { } catch (IllegalArgumentException e) {
logger.trace((Supplier<?>) () -> new ParameterizedMessage("fails creating container [{}]", container), e); logger.trace((Supplier<?>) () -> new ParameterizedMessage("fails creating container [{}]", container), e);
throw new RepositoryException(container, e.getMessage()); throw new RepositoryException(container, e.getMessage(), e);
} }
} }