Package org.apache.log4j.helpers

Examples of org.apache.log4j.helpers.SynchronizedCountingQuietWriter


   * (non-Javadoc)
   *
   * @see org.apache.log4j.FileAppender#setQWForFiles(java.io.Writer)
   */
  protected final void setQWForFiles(final Writer writer) {
    final SynchronizedCountingQuietWriter countingQuietWriter = new SynchronizedCountingQuietWriter(writer, super.getErrorHandler());
    this.getProperties().setCountingQuietWriter(countingQuietWriter);
    super.qw = countingQuietWriter;
  }
View Full Code Here

TOP

Related Classes of org.apache.log4j.helpers.SynchronizedCountingQuietWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.