You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by sv...@apache.org on 2022/04/01 07:49:05 UTC

[wicket] branch master updated: WICKET-6966 do not record session size by default

This is an automated email from the ASF dual-hosted git repository.

svenmeier pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/wicket.git


The following commit(s) were added to refs/heads/master by this push:
     new 4764ac8  WICKET-6966 do not record session size by default
4764ac8 is described below

commit 4764ac8010e34160bb61716ba3dc33cd1468e412
Author: Sven Meier <sv...@apache.org>
AuthorDate: Fri Apr 1 09:31:38 2022 +0200

    WICKET-6966 do not record session size by default
    
    if request logging is enabled
---
 .../main/java/org/apache/wicket/settings/RequestLoggerSettings.java  | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/wicket-core/src/main/java/org/apache/wicket/settings/RequestLoggerSettings.java b/wicket-core/src/main/java/org/apache/wicket/settings/RequestLoggerSettings.java
index a62d1a5..112c65e 100644
--- a/wicket-core/src/main/java/org/apache/wicket/settings/RequestLoggerSettings.java
+++ b/wicket-core/src/main/java/org/apache/wicket/settings/RequestLoggerSettings.java
@@ -28,11 +28,12 @@ package org.apache.wicket.settings;
  */
 public class RequestLoggerSettings
 {
-	private boolean recordSessionSize = true;
+	private boolean requestLoggerEnabled = false;
+
+	private boolean recordSessionSize = false;
 
 	private int requestsWindowSize = 0;
 
-	private boolean requestLoggerEnabled;
 
 	/**
 	 * @return true if the session size is recorded. (default true)