java: log exceptions correctly, using the right version of WARN
Change-Id: Ide21786d5275802ee60de2d5f056aa08cc8497ca
This commit is contained in:
parent
f635ba0684
commit
726fc58d0c
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user