From: markt Date: Wed, 10 Feb 2010 22:55:58 +0000 (+0000) Subject: Update logging docs X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=09a72ba039ef08dc17bcaa5a3bc900643b8f533a;p=tomcat7.0 Update logging docs git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@908721 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/docs/logging.xml b/webapps/docs/logging.xml index b9be2a471..3b01343f6 100644 --- a/webapps/docs/logging.xml +++ b/webapps/docs/logging.xml @@ -128,11 +128,13 @@ boolean value.
  • The root logger can define its set of handlers using a .handlers property.
  • -
  • Logging is buffered using a default buffer size of 0 bytes. - To change bufferSize, use the bufferSize property of a handler. - The value of 0 uses system default buffering. - The value of <0 forces a writer flush upon each log write. - A value >0 uses a BufferedOutputStream with the defined value.
  • +
  • Logging is not buffered by default. To configure buffering, use the + bufferSize property of a handler. A value of 0 + uses system default buffering (typically an 8K buffer will be used). A + value of <0 forces a writer flush upon each log write. A + value >0 uses a BufferedOutputStream with the defined + value but note that the system default buffering will also be + applied.
  • System property replacement is performed for property values which contain ${systemPropertyName}.