blob: d64133a4a3bf2a58f5ab032a3eea04568bf5a152 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.openejb.util;
import org.apache.log4j.*;
import java.io.PrintWriter;
/**
* @version $Rev: 1153797 $ $Date: 2011-08-04 09:09:44 +0000 (Thu, 04 Aug 2011) $
*/
public class Log4jPrintWriter extends PrintWriter {
private final StringBuffer text = new StringBuffer("");
private final org.apache.log4j.Logger logger;
private final Priority priority;
public Log4jPrintWriter(String category, Priority priority) {
super(System.err);
logger = org.apache.log4j.Logger.getLogger(category);
this.priority = priority;
}
public void close() {
flush();
}
private void flushLine() {
logger.log(priority, text.toString());
text.setLength(0);
}
public void flush() {
if (!text.toString().equals("")) {
flushLine();
}
}
public void print(boolean b) {
text.append(b);
}
public void print(char c) {
text.append(c);
}
public void print(char[] s) {
text.append(s);
}
public void print(double d) {
text.append(d);
}
public void print(float f) {
text.append(f);
}
public void print(int i) {
text.append(i);
}
public void print(long l) {
text.append(l);
}
public void print(Object obj) {
text.append(obj);
}
public void print(String s) {
text.append(s);
}
public void println() {
if (!text.toString().equals("")) {
flushLine();
}
}
public void println(boolean x) {
text.append(x);
flushLine();
}
public void println(char x) {
text.append(x);
flushLine();
}
public void println(char[] x) {
text.append(x);
flushLine();
}
public void println(double x) {
text.append(x);
flushLine();
}
public void println(float x) {
text.append(x);
flushLine();
}
public void println(int x) {
text.append(x);
flushLine();
}
public void println(long x) {
text.append(x);
flushLine();
}
public void println(Object x) {
text.append(x);
flushLine();
}
public void println(String x) {
text.append(x);
flushLine();
}
}