Searched defs:record (Results 1 - 5 of 5) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/
H A DConsoleFormatter.java48 public String format(LogRecord record) { argument
51 sb.append(ts(new Date(record.getMillis())));
53 sb.append(formatMessage(record));
54 Throwable thrown = record.getThrown();
55 if (null != thrown && record.getLevel().intValue() < Level.CONFIG.intValue()) {
H A DSimpleConsoleFormatter.java49 public String format(LogRecord record) { argument
51 sb.append(ts(new Date(record.getMillis())));
53 sb.append(record.getLevel().getName());
55 sb.append(formatMessage(record));
56 Throwable thrown = record.getThrown();
57 if (null != thrown && record.getLevel().intValue() > Level.CONFIG.intValue()) {
H A DFileLogFormatter.java54 public String format(LogRecord record) { argument
57 sb.append(ts(new Date(record.getMillis())));
59 String loglevel = record.getLevel().getName();
66 sb.append(record.getThreadID());
68 sb.append(classNameOnly(record.getSourceClassName()));
70 sb.append(formatMessage(record));
72 sb.append(record.getMessage());
73 Throwable thrown = record.getThrown();
74 if (null != thrown && record.getLevel().intValue() < Level.CONFIG.intValue()) {
H A DSimpleFileLogFormatter.java55 public String format(LogRecord record) { argument
57 dat.setTime(record.getMillis());
60 String loglevel = record.getLevel().getName();
64 sb.append(record.getThreadID());
66 sb.append(classNameOnly(record.getSourceClassName()));
68 sb.append(record.getSourceMethodName());
70 sb.append(formatMessage(record));
71 Throwable thrown = record.getThrown();
72 if (null != thrown && record.getLevel().intValue() > Level.CONFIG.intValue()) {
/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DSCCSHistoryParser.java53 StringBuilder record = new StringBuilder(128); field in class:SCCSHistoryParser
102 * Read a single line of delta record
110 record.setLength(0);
113 record.append((char)c);
117 return (record.length() > 2);
122 String[] f = record.toString().split(" ", 6);
143 * @return get the revision string of current log record
151 * @return get the date assosiated with current log record
159 * @return get the author of current log record
166 * @return get the comments of current log record
[all...]

Completed in 9 milliseconds