You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by lo...@apache.org on 2021/06/24 11:08:20 UTC

[myfaces-tobago] branch master updated: doc/demo: wording

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

lofwyr pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git


The following commit(s) were added to refs/heads/master by this push:
     new d17d2bb  doc/demo: wording
d17d2bb is described below

commit d17d2bb925644a73bda2f3119167121147a46ef6
Author: Udo Schnurpfeil <ud...@irian.eu>
AuthorDate: Thu Jun 24 13:06:42 2021 +0200

    doc/demo: wording
---
 .../myfaces/tobago/example/demo/info/ActivityPhaseListener.java       | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/info/ActivityPhaseListener.java b/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/info/ActivityPhaseListener.java
index 93f8b91..f280e3d 100644
--- a/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/info/ActivityPhaseListener.java
+++ b/tobago-example/tobago-example-demo/src/main/java/org/apache/myfaces/tobago/example/demo/info/ActivityPhaseListener.java
@@ -51,10 +51,10 @@ public class ActivityPhaseListener implements PhaseListener {
     final String sessionId = ((HttpSession) facesContext.getExternalContext().getSession(true)).getId();
 
     if (facesContext.getPartialViewContext().isAjaxRequest()) {
-      LOG.debug("ajax for sessionId='{}'", sessionId);
+      LOG.debug("AJAX request for sessionId='{}'", sessionId);
       activityList.executeAjaxRequest(sessionId);
     } else {
-      LOG.debug("full for sessionId='{}'", sessionId);
+      LOG.debug("Normal request for sessionId='{}'", sessionId);
       activityList.executeJsfRequest(sessionId);
     }
   }