Java Log to File logRecordToString(LogRecord record)

Here you can find the source of logRecordToString(LogRecord record)

Description

log Record To String

License

Apache License

Declaration

public static String logRecordToString(LogRecord record) 

Method Source Code

//package com.java2s;
/*/*  w  w w  .  j a  v  a2  s.  c  om*/
 Copyright 2014 Reo_SP

 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at

 http://www.apache.org/licenses/LICENSE-2.0

 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */

import java.text.SimpleDateFormat;
import java.util.logging.LogRecord;

public class Main {
    public static String logRecordToString(LogRecord record) {
        return new SimpleDateFormat("HH:mm:ss").format(record.getMillis())
                + " ["
                + record.getLevel()
                + "] "
                + (record.getLoggerName() == null ? "" : "["
                        + record.getLoggerName() + "] ")
                + record.getMessage();
    }
}

Related

  1. logError(String msg)
  2. logErrPrint(String s)
  3. logger(String s)
  4. loggerOld(String s)
  5. logInfo(ILog log, String message)
  6. logToFile(String filePath, String message)
  7. logToFile(String string, String logFile)
  8. logToFile(String what, String where)