Removed success filter in http log visits compute.
This commit is contained in:
parent
88a1cd4c29
commit
a667d59072
1 changed files with 3 additions and 1 deletions
|
@ -176,7 +176,9 @@ public class VisitCounters extends HashMap<String, Visits>
|
|||
*/
|
||||
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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue