Revision: 1255
          http://stripes.svn.sourceforge.net/stripes/?rev=1255&view=rev
Author:   bengunter
Date:     2010-06-09 00:38:21 +0000 (Wed, 09 Jun 2010)

Log Message:
-----------
STS-319: Corrected misleading log messages

Modified Paths:
--------------
    
branches/1.5.x/stripes/src/net/sourceforge/stripes/tag/layout/LayoutComponentRenderer.java

Modified: 
branches/1.5.x/stripes/src/net/sourceforge/stripes/tag/layout/LayoutComponentRenderer.java
===================================================================
--- 
branches/1.5.x/stripes/src/net/sourceforge/stripes/tag/layout/LayoutComponentRenderer.java
  2010-06-08 20:35:12 UTC (rev 1254)
+++ 
branches/1.5.x/stripes/src/net/sourceforge/stripes/tag/layout/LayoutComponentRenderer.java
  2010-06-09 00:38:21 UTC (rev 1255)
@@ -118,7 +118,7 @@
         final LayoutContext currentSource = getSourceContext();
 
         // Never use a context that sits higher up the stack than the current 
source
-        log.debug("Stringify component \"", componentName, "\" in ", 
currentPage);
+        log.debug("Render component \"", componentName, "\" in ", currentPage);
         LinkedList<LayoutContext> stack = LayoutContext.getStack(pageContext, 
true);
         Iterator<LayoutContext> iter = stack.descendingIterator();
         if (currentSource != null) {
@@ -133,7 +133,7 @@
             final LayoutContext source = iter.next();
             if (!source.getComponents().containsKey(componentName)
                     || source.getRenderPage().equals(currentPage)) {
-                log.trace("Not stringifying \"", componentName, "\" in context 
", source
+                log.trace("Not rendering \"", componentName, "\" in context ", 
source
                         .getRenderPage(), " -> ", source.getDefinitionPage());
                 continue;
             }
@@ -144,12 +144,12 @@
             context.setComponent(componentName);
 
             try {
-                log.debug("Start stringify \"", componentName, "\" in ", 
context.getRenderPage(),
+                log.debug("Start execute \"", componentName, "\" in ", 
context.getRenderPage(),
                         " -> ", context.getDefinitionPage(), " from ", 
source.getRenderPage(),
                         " -> ", source.getDefinitionPage());
                 context.getOut().setSilent(true, pageContext);
                 pageContext.include(source.getRenderPage(), false);
-                log.debug("End stringify \"", componentName, "\" in ", 
context.getRenderPage(),
+                log.debug("End execute \"", componentName, "\" in ", 
context.getRenderPage(),
                         " -> ", context.getDefinitionPage(), " from ", 
source.getRenderPage(),
                         " -> ", source.getDefinitionPage());
 


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
ThinkGeek and WIRED's GeekDad team up for the Ultimate 
GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the 
lucky parental unit.  See the prize list and enter to win: 
http://p.sf.net/sfu/thinkgeek-promo
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development

Reply via email to