deps/CeylonLogFormatter.java

50 lines
1.5 KiB
Java

/********************************************************************************
* Copyright (c) 2011-2017 Red Hat Inc. and/or its affiliates and others
*
* This program and the accompanying materials are made available under the
* terms of the Apache License, Version 2.0 which is available at
* http://www.apache.org/licenses/LICENSE-2.0
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/
package org.eclipse.ceylon.launcher;
import java.util.logging.Formatter;
import java.util.logging.Level;
import java.util.logging.LogRecord;
/**
* Fix log format.
*
* @author Stephane Epardaud
* @author <a href="mailto:ales.justin@jboss.org">Ales Justin</a>
*/
class CeylonLogFormatter extends Formatter {
static final Formatter INSTANCE = new CeylonLogFormatter();
private static final String MESSAGE_PATTERN = "%s: %s %s\n";
private CeylonLogFormatter() {
}
@Override
public String format(LogRecord record) {
//noinspection ThrowableResultOfMethodCallIgnored
return String.format(
MESSAGE_PATTERN,
getErrorType(record.getLevel()),
record.getMessage(),
record.getThrown() == null ? "" : record.getThrown());
}
private static String getErrorType(Level level) {
if (level == Level.WARNING)
return "Warning";
if (level == Level.INFO)
return "Note";
if (level == Level.SEVERE)
return "Error";
return "Debug";
}
}