java: log exceptions correctly, using the right version of WARN
Change-Id: Ide21786d5275802ee60de2d5f056aa08cc8497ca
This commit is contained in:
@@ -435,11 +435,11 @@ public class ImageProducer
|
|||||||
}
|
}
|
||||||
catch (IOException e)
|
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)
|
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)
|
if (!preserveIRI)
|
||||||
|
Reference in New Issue
Block a user