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/11/17 08:02:24 UTC

[openmeetings] branch master updated: [OPENMEETINGS-2511] log level is changed

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 2b28cfd  [OPENMEETINGS-2511] log level is changed
2b28cfd is described below

commit 2b28cfdaf74585a6cb92ba25ffd572e59677d4c2
Author: Maxim Solodovnik <so...@gmail.com>
AuthorDate: Tue Nov 17 15:00:30 2020 +0700

    [OPENMEETINGS-2511] log level is changed
---
 .../src/main/java/org/apache/openmeetings/web/app/Application.java    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application.java b/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application.java
index c8580c7..e431f7c 100644
--- a/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application.java
+++ b/openmeetings-web/src/main/java/org/apache/openmeetings/web/app/Application.java
@@ -666,7 +666,9 @@ public class Application extends AuthenticatedWebApplication implements IApplica
 			port = String.valueOf(reqUrl.getPort());
 		}
 		String url = (insecure ? "ws" : "wss") + "://" + reqUrl.getHost() + delim + port;
-		log.debug("Getting WS url from '{}', result: '{}'", reqUrl.toString(StringMode.FULL), url);
+		if (log.isTraceEnabled()) {
+			log.trace("Getting WS url from '{}', result: '{}'", reqUrl.toString(StringMode.FULL), url);
+		}
 		return url;
 	}
 }