web-dev-qa-db-ja.com

Javaログ出力を1行に表示するにはどうすればよいですか?

現在、デフォルトのエントリは次のようになっています。

Oct 12, 2008 9:45:18 AM myClassInfoHere
INFO: MyLogMessageHere

これを行うにはどうすればよいですか?

Oct 12, 2008 9:45:18 AM myClassInfoHere - INFO: MyLogMessageHere

明確化私はJava.util.loggingを使用しています

117
Obediah Stane

Java 7、 Java.util.logging.SimpleFormatter のシステムプロパティからの format の取得をサポートしているため、 JVMコマンドラインにより、1行で印刷されます。

-Djava.util.logging.SimpleFormatter.format='%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s %2$s %5$s%6$s%n'

または、これをlogger.propertiesに追加することもできます。

Java.util.logging.SimpleFormatter.format='%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$s %2$s %5$s%6$s%n'
78
Trevor Robinson

1)-Djava.util.logging.SimpleFormatter.format

Java 7は、Java.util.Formatter形式の文字列構文のプロパティをサポートしています。

-Djava.util.logging.SimpleFormatter.format=... 

here を参照してください。

私のお気に入りは:

-Djava.util.logging.SimpleFormatter.format=%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$-6s %2$s %5$s%6$s%n

出力は次のようになります。

2014-09-02 16:44:57 SEVERE org.jboss.windup.util.ZipUtil unzip: Failed to load: foo.Zip

2)IDEに配置する

IDEでは通常、プロジェクトのシステムプロパティを設定できます。例えば。 NetBeansでは、-D ... = ...をどこかに追加する代わりに、アクションダイアログにJava.util.logging.SimpleFormatter.format=%1$tY-%1$tm-...の形式で、引用符なしでプロパティを追加します。 IDEがわかるはずです。

3)それをMavenに置く-Surefire

便宜上、Surefireに配置する方法は次のとおりです。

        <!-- Surefire -->
        <plugin>
            <groupId>org.Apache.maven.plugins</groupId>
            <artifactId>maven-surefire-plugin</artifactId>
            <version>2.17</version>
            <configuration>
                <systemPropertyVariables>
                    <!-- Set JUL Formatting -->
                    <Java.util.logging.SimpleFormatter.format>%1$tY-%1$tm-%1$td %1$tH:%1$tM:%1$tS %4$-6s %2$s %5$s%6$s%n</Java.util.logging.SimpleFormatter.format>
                </systemPropertyVariables>
            </configuration>
        </plugin>

4)手作り

いくつかのJava.util.logging関連クラス のライブラリがあります。それらの中では、SingleLineFormatterです。ダウンロード可能なjar こちら

public class SingleLineFormatter extends Formatter {

  Date dat = new Date();
  private final static String format = "{0,date} {0,time}";
  private MessageFormat formatter;
  private Object args[] = new Object[1];

  // Line separator string.  This is the value of the line.separator
  // property at the moment that the SimpleFormatter was created.
  //private String lineSeparator = (String) Java.security.AccessController.doPrivileged(
  //        new Sun.security.action.GetPropertyAction("line.separator"));
  private String lineSeparator = "\n";

  /**
   * Format the given LogRecord.
   * @param record the log record to be formatted.
   * @return a formatted log record
   */
  public synchronized String format(LogRecord record) {

    StringBuilder sb = new StringBuilder();

    // Minimize memory allocations here.
    dat.setTime(record.getMillis());    
    args[0] = dat;


    // Date and time 
    StringBuffer text = new StringBuffer();
    if (formatter == null) {
      formatter = new MessageFormat(format);
    }
    formatter.format(args, text, null);
    sb.append(text);
    sb.append(" ");


    // Class name 
    if (record.getSourceClassName() != null) {
      sb.append(record.getSourceClassName());
    } else {
      sb.append(record.getLoggerName());
    }

    // Method name 
    if (record.getSourceMethodName() != null) {
      sb.append(" ");
      sb.append(record.getSourceMethodName());
    }
    sb.append(" - "); // lineSeparator



    String message = formatMessage(record);

    // Level
    sb.append(record.getLevel().getLocalizedName());
    sb.append(": ");

    // Indent - the more serious, the more indented.
    //sb.append( String.format("% ""s") );
    int iOffset = (1000 - record.getLevel().intValue()) / 100;
    for( int i = 0; i < iOffset;  i++ ){
      sb.append(" ");
    }


    sb.append(message);
    sb.append(lineSeparator);
    if (record.getThrown() != null) {
      try {
        StringWriter sw = new StringWriter();
        PrintWriter pw = new PrintWriter(sw);
        record.getThrown().printStackTrace(pw);
        pw.close();
        sb.append(sw.toString());
      } catch (Exception ex) {
      }
    }
    return sb.toString();
  }
}
71
Ondra Žižka

Tervorに似ていますが、実行時にプロパティを変更するのが好きです。

これは、最初のSimpleFormatterを作成する前に設定する必要があることに注意してください-コメントに書かれているように。

    System.setProperty("Java.util.logging.SimpleFormatter.format", 
            "%1$tF %1$tT %4$s %2$s %5$s%6$s%n");
46
Guy L

Obediah Staneが言ったように、独自のformatメソッドを作成する必要があります。しかし、私はいくつかのことを変更します:

  • Formatterからではなく、SimpleFormatterから直接派生したサブクラスを作成します。 SimpleFormatterに追加するものはもうありません。

  • 新しいDateオブジェクトの作成には注意してください! LogRecordの日付を表すようにしてください。デフォルトのコンストラクタで新しいDateを作成する場合、Formatterが処理された日付ではなく、LogRecordLogRecordを処理する日時を表します。作成した。

次のクラスはHandlerフォーマッタとして使用 になり、Logger追加 になります。 LogRecordで利用可能なすべてのクラスおよびメソッド情報を無視することに注意してください。

import Java.io.PrintWriter;
import Java.io.StringWriter;
import Java.util.Date;
import Java.util.logging.Formatter;
import Java.util.logging.LogRecord;

public final class LogFormatter extends Formatter {

    private static final String LINE_SEPARATOR = System.getProperty("line.separator");

    @Override
    public String format(LogRecord record) {
        StringBuilder sb = new StringBuilder();

        sb.append(new Date(record.getMillis()))
            .append(" ")
            .append(record.getLevel().getLocalizedName())
            .append(": ")
            .append(formatMessage(record))
            .append(LINE_SEPARATOR);

        if (record.getThrown() != null) {
            try {
                StringWriter sw = new StringWriter();
                PrintWriter pw = new PrintWriter(sw);
                record.getThrown().printStackTrace(pw);
                pw.close();
                sb.append(sw.toString());
            } catch (Exception ex) {
                // ignore
            }
        }

        return sb.toString();
    }
}
35
Benno Richters

これは私が使用しているものです。

public class VerySimpleFormatter extends Formatter {

    private static final String PATTERN = "yyyy-MM-dd'T'HH:mm:ss.SSSXXX";

    @Override
    public String format(final LogRecord record) {
        return String.format(
                "%1$s %2$-7s %3$s\n",
                new SimpleDateFormat(PATTERN).format(
                        new Date(record.getMillis())),
                record.getLevel().getName(), formatMessage(record));
    }
}

次のようになります...

2016-08-19T17:43:14.295+09:00 INFO    Hey~
2016-08-19T17:43:16.068+09:00 SEVERE  Seriously?
2016-08-19T17:43:16.068+09:00 WARNING I'm warning you!!!
10
Jin Kwon

Eclipse config

スクリーンショットごとに、Eclipseで「実行」、「構成の実行...」の順に選択し、引用符の代わりに二重引用符でTrevor Robinsonからの回答を追加します。二重引用符を忘れると、「メインクラスを見つけられないか、ロードできませんでした」というエラーが表示されます。

7
rupweb

私はそれが機能する方法を見つけました。 SimpleFormatterをサブクラス化し、formatメソッドをオーバーライドできます

    public String format(LogRecord record) {
        return new Java.util.Date() + " " + record.getLevel() + " " + record.getMessage() + "\r\n";
    }

このAPIに少し驚いたのは、より多くの機能/柔軟性がすぐに提供されると思っていたからです。

4
Obediah Stane