You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by hl...@apache.org on 2008/03/04 16:10:23 UTC

svn commit: r633506 - in /tapestry/tapestry5/trunk: quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties tapestry-core/src/site/apt/guide/persist.apt

Author: hlship
Date: Tue Mar  4 07:10:19 2008
New Revision: 633506

URL: http://svn.apache.org/viewvc?rev=633506&view=rev
Log:
TAPESTRY-2227: Typo in User Guide -> Persistent Data -> Persistence Strategy

Modified:
    tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties
    tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/persist.apt

Modified: tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties?rev=633506&r1=633505&r2=633506&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties (original)
+++ tapestry/tapestry5/trunk/quickstart/src/main/resources/archetype-resources/src/main/resources/log4j.properties Tue Mar  4 07:10:19 2008
@@ -1,27 +1,28 @@
-log4j.rootCategory=WARN, A1
+# Default to info level output; this is very handy if you eventually use Hibernate as well.
+log4j.rootCategory=info, A1
 
-# A1 is set to be a ConsoleAppender. 
+# A1 is set to be a ConsoleAppender.
 log4j.appender.A1=org.apache.log4j.ConsoleAppender
 
 # A1 uses PatternLayout.
 log4j.appender.A1.layout=org.apache.log4j.PatternLayout
-log4j.appender.A1.layout.ConversionPattern=[%p] %c{1} %m%n
-
-log4j.category.org.apache.tapestry.TapestryFilter=info
-log4j.category.org.apache.tapestry=error
-log4j.category.tapestry=error
-
-log4j.category.${packageName}=error
+log4j.appender.A1.layout.ConversionPattern=[%p] %c{2} %m%n
 
 # Service category names are the name of the defining module class
 # and then the service id.
 log4j.category.${packageName}.services.AppModule.TimingFilter=info
 
 # Outputs a list of pages, components and mixins at startup.
-org.apache.tapestry.services.TapestryModule.ComponentClassResolver=info
+log4j.category.org.apache.tapestry.services.TapestryModule.ComponentClassResolver=info
+
+# Outputs startup statistics; time to setup and initialize the registry, and a list of
+# available services.
+log4j.category.org.apache.tapestry.TapestryFilter=info
+
 
 # Turning on debug mode for a page or component will show all of the code changes that occur when the
 # class is loaded.  Turning on debug mode for a page will enable detailed output about
 # the contruction of the page, including the runtime code modifications that occur. Verbose
 # mode is rarely used, as it output voluminous details about the rendering of the page.
-# log4j.category.${packageName}.pages.Index=debug
+
+# log4j.category.${packageName}.pages.Index=debug
\ No newline at end of file

Modified: tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/persist.apt
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/persist.apt?rev=633506&r1=633505&r2=633506&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/persist.apt (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/persist.apt Tue Mar  4 07:10:19 2008
@@ -51,7 +51,7 @@
   The flash is typically used to store temporary messages that should only be displayed to the user
   once.
   
-* client stategy
+* client strategy
 
   The field is persisted onto the client; you will see an additional query parameter in each URL
   (or an extra hidden field in each form).