All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.orientechnologies.common.log.OLogFormatter Maven / Gradle / Ivy

The newest version!
package com.orientechnologies.common.log;

import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.logging.Formatter;
import java.util.logging.Level;
import java.util.logging.LogRecord;

public class OLogFormatter extends Formatter {

  private static final DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS");

  /**
   * The end-of-line character for this platform.
   */
  private static final String     EOL        = System.getProperty("line.separator");

  @Override
  public String format(final LogRecord record) {
    if (record.getThrown() == null) {
      return customFormatMessage(record);
    }

    // FORMAT THE STACK TRACE
    final StringBuilder buffer = new StringBuilder(512);
    buffer.append(record.getMessage());

    Throwable current = record.getThrown();

    while (current != null) {
      buffer.append(EOL).append(current.getMessage());

      for (StackTraceElement stackTraceElement : record.getThrown().getStackTrace()) {
        buffer.append(EOL).append("-> ");
        buffer.append(stackTraceElement.toString());
      }
      current = current.getCause();
    }

    return buffer.toString();
  }

  private String customFormatMessage(final LogRecord iRecord) {
    Level iLevel = iRecord.getLevel();
    String iMessage = iRecord.getMessage();
    Object[] iAdditionalArgs = iRecord.getParameters();
    String iRequester = getSourceClassSimpleName(iRecord.getLoggerName());

    final StringBuilder buffer = new StringBuilder(512);
    buffer.append(EOL);
    synchronized (dateFormat) {
      buffer.append(dateFormat.format(new Date()));
    }
    buffer.append(' ');
    buffer.append(iLevel.getName().substring(0, 4));
    buffer.append(' ');

    // FORMAT THE MESSAGE
    try {
      if (iAdditionalArgs != null)
        buffer.append(String.format(iMessage, iAdditionalArgs));
      else
        buffer.append(iMessage);
    } catch (Exception e) {
      buffer.append(iMessage);
    }

    if (iRequester != null) {
      buffer.append(" [");
      buffer.append(iRequester);
      buffer.append(']');
    }

    return buffer.toString();
  }

  private String getSourceClassSimpleName(final String iSourceClassName) {
    return iSourceClassName.substring(iSourceClassName.lastIndexOf(".") + 1);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy