java: log exceptions correctly, using the right version of WARN

Change-Id: Ide21786d5275802ee60de2d5f056aa08cc8497ca
This commit is contained in:
Noel Grandin 2014-08-20 15:26:20 +02:00
parent f635ba0684
commit 726fc58d0c

View File

@ -435,11 +435,11 @@ public class ImageProducer
}
catch (IOException e)
{
LOGGER.warn("Failed to load image from local input-repository" + e);
LOGGER.warn("Failed to load image from local input-repository", e);
}
catch (ReportExecutionException e)
{
LOGGER.warn("Failed to create image from local input-repository" + e);
LOGGER.warn("Failed to create image from local input-repository", e);
}
if (!preserveIRI)