> @@ -477,8 +478,10 @@ public String putBlob(final String containerName, final 
> Blob blob) throws IOExce
>           return base16().lowerCase().encode(actualHashCode.asBytes());
>        } catch (IOException ex) {
>           if (outputFile != null) {
> -            if (!outputFile.delete()) {
> -               logger.debug("Could not delete %s", outputFile);
> +            try {
> +            delete(outputFile);
> +            } catch (IOException e) {
> +               logger.debug("Could not delete %s", e);

Wrong log message now? `("Could not delete %s: %s", outputFile, e)` perhaps?

---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/871/files#r44410564

Reply via email to