Kaydet (Commit) 726fc58d authored tarafından Noel Grandin's avatar Noel Grandin

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

Change-Id: Ide21786d5275802ee60de2d5f056aa08cc8497ca
üst f635ba06
...@@ -435,11 +435,11 @@ public class ImageProducer ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment