Removed success filter in http log visits compute.

This commit is contained in:
Christian P. MOMON 2022-01-11 02:15:24 +01:00
parent 88a1cd4c29
commit a667d59072

View file

@ -176,7 +176,9 @@ public class VisitCounters extends HashMap<String, Visits>
*/ */
public void putVisit(final HttpAccessLog log) public void putVisit(final HttpAccessLog log)
{ {
if ((log != null) && (log.getStatus().getCategory() == HttpStatusCategory.SUCCESS)) // if ((log != null) && (log.getStatus().getCategory() ==
// HttpStatusCategory.SUCCESS))
if (log != null)
{ {
String key = computeKey(log); String key = computeKey(log);