~ubuntu-branches/ubuntu/natty/tomcat6/natty-proposed

« back to all changes in this revision

Viewing changes to webapps/docs/logging.xml

  • Committer: Bazaar Package Importer
  • Author(s): Thierry Carrez
  • Date: 2010-05-21 13:51:15 UTC
  • mfrom: (2.2.12 sid)
  • Revision ID: james.westby@ubuntu.com-20100521135115-qfwnf24lzvi3644v
Tags: 6.0.26-2
* debian/tomcat6.{postinst,prerm}: Respect TOMCAT6_USER and TOMCAT6_GROUP
  as defined in /etc/default/tomcat6 when setting directory permissions and
  authbind configuration (Closes: #581018, LP: #557300)
* debian/tomcat6.postinst: Use group "tomcat6" instead of "adm" for
  permissions in /var/lib/tomcat6, so that group "adm" doesn't get write
  permissions over /var/lib/tomcat6/webapps (LP: #569118)

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 
31
31
<body>
32
32
 
 
33
<section name="Table of Contents">
 
34
<toc/>
 
35
</section>
 
36
 
33
37
  <section name="Introduction">
34
38
    <p>
35
39
      Tomcat uses 
128
132
      boolean value.</li>
129
133
      <li>The root logger can define its set of handlers using a
130
134
      <code>.handlers</code> property.</li>
131
 
      <li>Logging is buffered using a default buffer size of 0 bytes.
132
 
      To change bufferSize, use the <code>bufferSize</code> property of a handler.
133
 
      The value of <code>0</code> uses system default buffering.
134
 
      The value of <code>&lt;0</code> forces a writer flush upon each log write.
135
 
      A value <code>&gt;0</code> uses a BufferedOutputStream with the defined value.</li>
 
135
      <li>Logging is not buffered by default. To configure buffering, use the
 
136
      <code>bufferSize</code> property of a handler. A value of <code>0</code>
 
137
      uses system default buffering (typically an 8K buffer will be used). A
 
138
      value of <code>&lt;0</code> forces a writer flush upon each log write. A
 
139
      value <code>&gt;0</code> uses a BufferedOutputStream with the defined
 
140
      value but note that the system default buffering will also be
 
141
      applied.</li>
136
142
      <li>System property replacement is performed for property values which
137
143
      contain ${systemPropertyName}.</li>
138
144
    </ul>