获取日志处理程序中的行号

时间:2013-10-26 18:18:49

标签: java java.util.logging

我正在为Java编写自己的日志Handler,我想将日志消息的行号插入到输出中。

这是我目前没有行号的尝试:

public class ConsoleHandler extends Handler {

    private static final String SEVERE = "SEVERE";

    private static final String DATE_TIME_FORMAT = "yyyy-MM-dd HH:mm:ss";

    @Override
    public void publish(LogRecord record) {
        StringBuilder output = new StringBuilder();

        // Add time and location of the message
        Date d = new Date(record.getMillis());
        String time = new SimpleDateFormat(DATE_TIME_FORMAT).format(d);

        output.append(time + ": " + record.getSourceClassName() + "."
                + record.getSourceMethodName() + "\t\t\t");

        output.append(record.getLevel() + ": " + record.getMessage());

        switch (record.getLevel().getName()) {
        case SEVERE:
            System.err.println(output);
            break;
        default:
            System.out.println(output);
        }
    }
    public void flush() {}
    public void close() throws SecurityException {}
}

我搜索了LogRecord的界面,但无法找到邮件记录在哪一行。

修改 我修改了jmehrens回答中链接的代码;此方法返回日志记录类的堆栈帧,我可以从中获取行号和文件名:

private StackTraceElement getCallerStackFrame(final String callerName) {
    StackTraceElement callerFrame = null;

    final StackTraceElement stack[] = new Throwable().getStackTrace();
    // Search the stack trace to find the calling class
    for (int i = 0; i < stack.length; i++) {
        final StackTraceElement frame = stack[i];
        if (callerName.equals(frame.getClassName())) {
            callerFrame = frame;
            break;
        }
    }

    return callerFrame;
}

用法:

final StackTraceElement callerFrame = getCallerStackFrame(record.getSourceClassName());

if (callerFrame != null) {
    final String fileName = callerFrame.getFileName();
    final int lineNumber = callerFrame.getLineNumber();
    // This creates a link to the line when used in Eclipse
    output.append("(" + fileName + ":" + lineNumber + ")");
}

2 个答案:

答案 0 :(得分:1)

没有LogRecord(JDK1.4 - JDK1.7)方法来获取行号。如果您的处理程序或上游没有发生线程切换,您可以创建一个新的Throwable().getStackTrace()并使用java.lang.StackTraceElement API获取行号。

示例代码可以在MailLogger.inferCaller()/isLoggerImplFrame()的JavaMail API中找到。如果必须处理线程切换,则必须将行号记录为日志记录参数。请记住,计算呼叫站点在性能方面是昂贵的。

答案 1 :(得分:0)

您可以使用以下代码获取它:

StackTraceElement e = Thread.currentThread().getStackTrace()[2];
e.getLineNumber();