From a7cdfc893c526b98a26a8f2e05346339fe79a79f Mon Sep 17 00:00:00 2001 From: "Svetlana.Zemlyanskaya" Date: Fri, 9 Mar 2018 17:48:06 +0100 Subject: [PATCH] Feature usage log: log file name together with response --- .../statistic/eventLog/EventLogStatisticsService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform/platform-impl/src/com/intellij/internal/statistic/eventLog/EventLogStatisticsService.java b/platform/platform-impl/src/com/intellij/internal/statistic/eventLog/EventLogStatisticsService.java index 6de70c4f9b58..34f469299aee 100644 --- a/platform/platform-impl/src/com/intellij/internal/statistic/eventLog/EventLogStatisticsService.java +++ b/platform/platform-impl/src/com/intellij/internal/statistic/eventLog/EventLogStatisticsService.java @@ -59,7 +59,7 @@ public class EventLogStatisticsService implements StatisticsService { final String error = validate(request, file); if (StringUtil.isNotEmpty(error) || request == null) { if (LOG.isTraceEnabled()) { - LOG.trace(error); + LOG.trace(file.getName() + "-> " + error); } toRemove.add(file); continue; @@ -79,7 +79,7 @@ public class EventLogStatisticsService implements StatisticsService { } if (LOG.isTraceEnabled()) { - LOG.trace(getResponseMessage(response)); + LOG.trace(file.getName() + " -> " + getResponseMessage(response)); } }