Feature usage log: log file name together with response

This commit is contained in:
Svetlana.Zemlyanskaya
2018-03-09 17:48:06 +01:00
parent 755ed7a340
commit a7cdfc893c
@@ -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));
}
}