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:05:32 UTC

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

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 c49625c  [OPENMEETINGS-2454] Additional logging is added
c49625c is described below

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

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

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 2a312bf..31cd253 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,6 +146,7 @@ public class WebSession extends AbstractAuthenticatedWebSession implements IWebS
 
 	@Override
 	public void invalidate() {
+		log.debug("[{}] invalidating session", getId());
 		cm.invalidate(userId, getId());
 		super.invalidate();
 		userId = null;
@@ -220,7 +221,7 @@ public class WebSession extends AbstractAuthenticatedWebSession implements IWebS
 	}
 
 	public void checkHashes(StringValue secure, StringValue invitation) {
-		log.debug("checkHashes, secure: '{}', invitation: '{}'", secure, invitation);
+		log.debug("[{} ? {}] checkHashes, secure: '{}', invitation: '{}'", getId(), isTemporary(), secure, invitation);
 		try {
 			log.debug("checkHashes, has soap in session ? '{}'", (soap != null));
 			if (!secure.isEmpty() && (soap == null || !soap.getHash().equals(secure.toString()))) {