The version of Apache log4j used by SoundHelix.
Clone
HTTPS:
git clone https://vervis.peers.community/repos/aEp6o
SSH:
git clone USERNAME@vervis.peers.community:aEp6o
Branches
Tags
- 1.3alpha-7
- CHAINSAW_2_SANDBOX_MERGE
- CORE_VERSION
- LEVEL_REPLACES_PRIORITY
- PREALPHA_1_3_AS_OF_2004_05_12
- PRE_CHAINSAW_MODEL_CONVERSION
- PRE_UGLI_MOVE
- TAG_CHAINSAW2_MOVE
- log4j-1.2.17
- log4j-1.2.17-rc1
- v1.3alpha8
- v1.3alpha8-temp
- v1_2_1
- v1_2_10-recalled
- v1_2_11
- v1_2_11_rc1
- v1_2_11rc3
- v1_2_12
- v1_2_12_rc1
- v1_2_12_rc2
- v1_2_12_rc3
- v1_2_12_rc4
- v1_2_12_rc5
- v1_2_12_rc6
- v1_2_13
- v1_2_13_rc1
- v1_2_13_rc2
- v1_2_13_site_update
- v1_2_14
- v1_2_14_maven
- v1_2_14_rc1
- v1_2_14_site_update
- v1_2_15
- v1_2_15_rc1
- v1_2_15_rc2
- v1_2_15_rc3
- v1_2_15_rc4
- v1_2_15_rc5
- v1_2_15_rc6
- v1_2_16
- v1_2_16_rc1
- v1_2_16_rc2
- v1_2_17
- v1_2_17-rc1
- v1_2_17_rc1
- v1_2_17_rc2
- v1_2_17_rc3
- v1_2_2
- v1_2_3
- v1_2_4
- v1_2_6
- v1_2_7
- v1_2_9
- v1_2_alpha0
- v1_2_alpha7
- v1_2beta1
- v1_2final
- v1_3alpha_1
- v1_3alpha_6
- v_1_0
- v_1_0_1
- v_1_0_4
- v_1_1
- v_1_1_1
- v_1_1_2
- v_1_1_3
- v_1_1_b1
- v_1_1b2
- v_1_1b3
- v_1_1b5
- v_1_1b6
- v_1_1b7
- v_1_2beta3
HTMLLayout.java
/*
* Copyright (C) The Apache Software Foundation. All rights reserved.
*
* This software is published under the terms of the Apache Software
* License version 1.1, a copy of which has been included with this
* distribution in the LICENSE.APL file. */
package org.apache.log4j;
import org.apache.log4j.spi.LoggingEvent;
import org.apache.log4j.helpers.OptionConverter;
import java.io.StringWriter;
import java.io.PrintWriter;
import java.io.Writer;
public class HTMLLayout extends Layout {
protected final int BUF_SIZE = 256;
protected final int MAX_CAPACITY = 1024;
// output buffer appended to when format() is invoked
private StringBuffer sbuf = new StringBuffer(BUF_SIZE);
/**
A string constant used in naming the option for setting the the
location information flag. Current value of this string
constant is <b>LocationInfo</b>.
<p>Note that all option keys are case sensitive.
*/
public static final String LOCATION_INFO_OPTION = "LocationInfo";
// Print no location info by default
boolean locationInfo = false;
public
void activateOptions() {
}
public
String format(LoggingEvent event) {
if(sbuf.capacity() > MAX_CAPACITY) {
sbuf = new StringBuffer(BUF_SIZE);
} else {
sbuf.setLength(0);
}
sbuf.append("\r\n\r\n<tr>");
sbuf.append("<td>");
sbuf.append(event.timeStamp - event.getStartTime());
sbuf.append("</td>\r\n");
sbuf.append("<td>");
sbuf.append(event.getThreadName());
sbuf.append("</td>\r\n");
sbuf.append("<td>");
if(event.priority.isGreaterOrEqual(Priority.WARN)) {
sbuf.append("<font color=\"#FF0000\">");
sbuf.append(event.priority);
sbuf.append("</font>");
} else {
sbuf.append(event.priority);
}
sbuf.append("</td>\r\n");
sbuf.append("<td>");
sbuf.append(event.categoryName);
sbuf.append("</td>\r\n");
sbuf.append("<td>");
sbuf.append(event.getNDC());
sbuf.append("</td>\r\n");
if(locationInfo) {
event.setLocationInformation();
sbuf.append("<td>");
sbuf.append(event.locationInfo.getFileName());
sbuf.append(':');
sbuf.append(event.locationInfo.getLineNumber());
sbuf.append("</td>\r\n");
}
sbuf.append("<td>");
sbuf.append(event.message);
sbuf.append("</td>\r\n");
sbuf.append("</tr>");
if(event.throwable != null) {
sbuf.append("\r\n<tr><td colspan=\"7\">");
sbuf.append(getThrowableAsHTML(event.throwable));
sbuf.append("</td></tr>");
}
return sbuf.toString();
}
/**
Returns the content type output by this layout, i.e "text/html".
*/
public
String getContentType() {
return "text/html";
}
/**
Returns appropriate HTML headers.
*/
public
String getHeader() {
StringBuffer sbuf = new StringBuffer();
sbuf.append("<html><body>\r\n");
sbuf.append("<table border=\"1\" cellpadding=\"2\">\r\n<tr>\r\n");
sbuf.append("<th>Time</th><th>Thread</th><th>Priority</th><th>Category</th>");
sbuf.append("<th>NDC</th>");
if(locationInfo) {
sbuf.append("<th>File:Line</th>");
}
sbuf.append("<th>Message</th></tr>");
return sbuf.toString();
}
/**
Returns the appropriate HTML footers.
*/
public
String getFooter() {
return "</table></body></html>";
}
public
String[] getOptionStrings() {
return new String[] {LOCATION_INFO_OPTION};
}
String getThrowableAsHTML(Throwable throwable) {
if(throwable == null)
return null;
StringWriter sw = new StringWriter();
HTMLPrintWriter hpw = new HTMLPrintWriter(sw);
throwable.printStackTrace(hpw);
return sw.toString();
}
public
boolean ignoresThrowable() {
return false;
}
/**
Set HTMLLayout specific options.
<p>The <b>LocationInfo</b> option takes a boolean value. By
default, it is set to false which means there will be no location
information output by this layoout. If the the option is set to
true, then the file name and line number of the statement
at the origin of the log statement will be output.
<p>If you are embedding this layout within an {@link
org.apache.log4j.net.SMTPAppender} then make sure to set the
<b>LocationInfo</b> option of that appender as well.
*/
public
void setOption(String key, String value) {
if(value == null) return;
if (key.equals(LOCATION_INFO_OPTION)) {
locationInfo = OptionConverter.toBoolean(value, locationInfo);
}
}
/**
Format exceptions in HTML aware way.
*/
static class HTMLPrintWriter extends PrintWriter {
static String TRACE_PREFIX = "<br> ";
public
HTMLPrintWriter(Writer writer) {
super(writer);
}
/**
Some JDKs use prinln(char[])
*/
public
void println(char[] c) {
write(TRACE_PREFIX);
this.write(c);
}
/**
Yet others use println(String). Go figure.
*/
public
void println(String s) {
write(TRACE_PREFIX);
this.write(s);
}
}
}