You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by pa...@apache.org on 2023/06/12 22:14:33 UTC

[myfaces] branch 3.0.x updated: MYFACES-4604: Update f:websocket integration message

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

paulnicolucci pushed a commit to branch 3.0.x
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/3.0.x by this push:
     new 4191d8e8a MYFACES-4604: Update f:websocket integration message
     new 1d9d05375 Merge pull request #579 from pnicolucci/MYFACES-4604-3.0
4191d8e8a is described below

commit 4191d8e8af7bdd0e86a14afb79d32d1099366ab3
Author: Paul Nicolucci <pn...@gmail.com>
AuthorDate: Mon Jun 12 15:52:29 2023 -0400

    MYFACES-4604: Update f:websocket integration message
---
 .../java/org/apache/myfaces/webapp/AbstractFacesInitializer.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java b/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java
index fe5470e7c..26a298e59 100644
--- a/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java
+++ b/impl/src/main/java/org/apache/myfaces/webapp/AbstractFacesInitializer.java
@@ -803,9 +803,9 @@ public abstract class AbstractFacesInitializer implements FacesInitializer
             }
             else
             {
-                log.log(Level.INFO, "f:websocket support enabled but cannot found websocket ServerContainer instance "+
-                        "on current context. If websocket library is available, please include a FakeEndpoint instance "
-                        + "into your code to force enable it (Tyrus users).");
+                log.log(Level.INFO, "f:websocket support is enabled but the WebSocket ServerContainer instance " +
+                        "cannot be found in the current ServletContext. If a websocket library is available, " +
+                        "please include a FakeEndpoint instance into your code to force enable it (Tyrus users).");
             }
         }
     }