Java Web Services via REST bereitstellen
ulrich
2014-11-23 5e59ad61f93caa4620f5016e01cb555a6572f4fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
package de.uhilger.transit;
 
import java.text.DateFormat;
import java.util.Locale;
import java.util.Date;
import java.util.logging.Handler;
import java.util.logging.LogRecord;
import java.util.logging.XMLFormatter;
 
/**
 * a log formatter which displays only message and date/time
 *
 * @author Ulrich Hilger
 * @author <a href="http://uhilger.de">http://uhilger.de</a>
 * @author published under the terms and conditions of the
 *      GNU General Public License
 *
 * @version 2, April 20, 2012 (changed from version 1, July 11, 2004)
 */
 
public class TextLogFormatter extends XMLFormatter {
 
  /** constructor */
  public TextLogFormatter() {
    lineSeparator = System.getProperty("line.separator");
  }
 
  /**
   * format a log record
   * @param record LogRecord the record to format
   * @return String the formatted log record
   */
  public String format(LogRecord record) {
    StringBuffer buf = new StringBuffer();
    DateFormat df = DateFormat.getDateTimeInstance(
      DateFormat.SHORT, DateFormat.MEDIUM, Locale.getDefault());
    buf.append(df.format(new Date(record.getMillis())));
    buf.append("   ");
    buf.append(record.getMessage());
    buf.append("   ");
    buf.append(record.getLevel());
    buf.append(" ");
    buf.append(record.getSourceClassName());
    buf.append(".");
    buf.append(record.getSourceMethodName());
    buf.append(lineSeparator);
    return buf.toString();
  }
 
  /**
   * get the header string
   * @param h Handler the handler
   * @return String the header string
   */
  public String getHead(Handler h) {
    return "";
  }
 
  /**
   * get the trailing string
   * @param h Handler the handler
   * @return String the trailing string
   */
  public String getTail(Handler h) {
    return "";
  }
  
  /** holds the system dependent line separator */
  private String lineSeparator;
}