You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openmeetings.apache.org by se...@apache.org on 2021/02/12 06:06:26 UTC

[openmeetings] branch feature/OPENMEETINGS-2575-log-file-ping-message created (now e99ac3f)

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

sebawagner pushed a change to branch feature/OPENMEETINGS-2575-log-file-ping-message
in repository https://gitbox.apache.org/repos/asf/openmeetings.git.


      at e99ac3f  OPENMEETINGS-2575 Log file fills up with ping messages. Reduce log level for this message.

This branch includes the following new commits:

     new e99ac3f  OPENMEETINGS-2575 Log file fills up with ping messages. Reduce log level for this message.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[openmeetings] 01/01: OPENMEETINGS-2575 Log file fills up with ping messages. Reduce log level for this message.

Posted by se...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

sebawagner pushed a commit to branch feature/OPENMEETINGS-2575-log-file-ping-message
in repository https://gitbox.apache.org/repos/asf/openmeetings.git

commit e99ac3f60db35ab8a21b618a3a524df199b23a22
Author: Sebastian Wagner <se...@apache.org>
AuthorDate: Fri Feb 12 19:06:04 2021 +1300

    OPENMEETINGS-2575 Log file fills up with ping messages. Reduce log level for this message.
---
 .../main/java/org/apache/openmeetings/web/common/OmWebSocketPanel.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/OmWebSocketPanel.java b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/OmWebSocketPanel.java
index 9c90531..14dedea 100644
--- a/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/OmWebSocketPanel.java
+++ b/openmeetings-web/src/main/java/org/apache/openmeetings/web/common/OmWebSocketPanel.java
@@ -126,7 +126,7 @@ public abstract class OmWebSocketPanel extends Panel {
 							}
 								break;
 							case "ping":
-								log.debug("Sending WebSocket PING");
+								log.trace("Sending WebSocket PING");
 								handler.appendJavaScript("OmUtil.ping();");
 								WebSocketHelper.sendClient(getWsClient(), new byte[]{getUserId() == null ? 0 : getUserId().byteValue()});
 								break;