From 4328612df80dabdf4ec02c062cdc9745cfb6d143 Mon Sep 17 00:00:00 2001 From: anna Date: Wed, 18 Apr 2012 10:16:29 +0200 Subject: [PATCH] export inspection results: logging --- .../intellij/codeInspection/ex/GlobalInspectionContextImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/lang-impl/src/com/intellij/codeInspection/ex/GlobalInspectionContextImpl.java b/platform/lang-impl/src/com/intellij/codeInspection/ex/GlobalInspectionContextImpl.java index 36e27ed70db5..34c5757bc028 100644 --- a/platform/lang-impl/src/com/intellij/codeInspection/ex/GlobalInspectionContextImpl.java +++ b/platform/lang-impl/src/com/intellij/codeInspection/ex/GlobalInspectionContextImpl.java @@ -341,7 +341,7 @@ public class GlobalInspectionContextImpl extends UserDataHolderBase implements G ((InspectionTool)state.getTool()).exportResults(element, refEntity); } catch (Exception e) { - LOG.error(e); + LOG.error("Problem when exporting: " + refEntity.getExternalName(), e); } } }