You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by so...@apache.org on 2020/09/25 08:49:03 UTC

[openmeetings] branch master updated: [OPENMEETINGS-2454] Additional logging is removed

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 4ffe8c4  [OPENMEETINGS-2454] Additional logging is removed
4ffe8c4 is described below

commit 4ffe8c41cb527d8cd30d450c2e24dacd55a223ca
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Fri Sep 25 15:48:48 2020 +0700

    [OPENMEETINGS-2454] Additional logging is removed
---
 .../src/main/java/org/apache/openmeetings/web/app/WebSession.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/WebSession.java b/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/WebSession.java
index 31cd253..2a312bf 100644
--- a/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/WebSession.java
+++ b/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/WebSession.java
@@ -146,7 +146,6 @@ public class WebSession extends AbstractAuthenticatedWebSession implements IWebS
 
 	@Override
 	public void invalidate() {
-		log.debug("[{}] invalidating session", getId());
 		cm.invalidate(userId, getId());
 		super.invalidate();
 		userId = null;
@@ -221,7 +220,7 @@ public class WebSession extends AbstractAuthenticatedWebSession implements IWebS
 	}
 
 	public void checkHashes(StringValue secure, StringValue invitation) {
-		log.debug("[{} ? {}] checkHashes, secure: '{}', invitation: '{}'", getId(), isTemporary(), secure, invitation);
+		log.debug("checkHashes, secure: '{}', invitation: '{}'", secure, invitation);
 		try {
 			log.debug("checkHashes, has soap in session ? '{}'", (soap != null));
 			if (!secure.isEmpty() && (soap == null || !soap.getHash().equals(secure.toString()))) {