Java 翻译器将 println 用法转换为方便的记录器

发布于 2024-10-18 15:15:54 字数 427 浏览 2 评论 0原文

我经常看到(并重用)没有适当输出的第三方源代码。是否有任何工具(代码翻译器)可以将 println 输出转换为合适的日志框架代码

private void processCreateTraining() {
    System.out.println("Training set created");
    //..
}

,例如

private void processCreateTraining() {
    LOG.info("Training set created");
    //..
}

可以通过 IDEA 中的搜索和替换或结构替换来完成。但是是否有更复杂/强大的解决方案可以提供更大的灵活性:不同的日志框架支持、询问发生替换的严重性、通过 StringBuilder 连接字符串。

I often see (and reuse) 3rd party source code that doesn't have appropriate output. Is there any tool (code translator) that convert println output to suitable log framework code

private void processCreateTraining() {
    System.out.println("Training set created");
    //..
}

to something like

private void processCreateTraining() {
    LOG.info("Training set created");
    //..
}

It could be done by search-and-replace or Structural Replace in IDEA. But is there more sophisticated/robust solution that provide more flexibility: different logging framework support, ask severity on occurrence replace, string concatenation via StringBuilder.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

柠栀 2024-10-25 15:15:54

如果我遇到到处使用 println 的第三方库,我往往不会使用它。这是做工不佳的标志,(对我来说)这意味着代码可能存在其他更隐蔽的问题。

但不,我不知道有任何插件或工具专门处理这种情况。

If I come across third party libraries that use println all over the place, I tend NOT to use it. It is a sign of poor workmanship, and that implies (to me) that there are likely to be other more insidious problems with the code.

But no, I'm not aware of any plugin or tool to deal specifically with this case.

一场春暖 2024-10-25 15:15:54

当然,尝试这样的事情:

public static void main(String[] args) {
    WrappedOutputStream los = new WrappedOutputStream();
    System.setOut(new PrintStream(los, true));
    System.out.println("catch me");
}

WrappedOutputStream.java

class WrappedOutputStream extends ByteArrayOutputStream { 
    public void flush() throws IOException {
        String str = "WRAPPED: " + this.toString();
        // process
    }
}

Sure, try something like this:

public static void main(String[] args) {
    WrappedOutputStream los = new WrappedOutputStream();
    System.setOut(new PrintStream(los, true));
    System.out.println("catch me");
}

WrappedOutputStream.java

class WrappedOutputStream extends ByteArrayOutputStream { 
    public void flush() throws IOException {
        String str = "WRAPPED: " + this.toString();
        // process
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文