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

io.quarkiverse.googlecloudservices.logging.runtime.util.SimpleFormatter Maven / Gradle / Ivy

package io.quarkiverse.googlecloudservices.logging.runtime.util;

import org.jboss.logmanager.ExtFormatter;
import org.jboss.logmanager.ExtLogRecord;

/**
 * This formatter uses the {@link ExtFormatter} without
 * any modifications.
 */
public class SimpleFormatter extends ExtFormatter {

    @Override
    public String format(ExtLogRecord record) {
        return super.formatMessage(record);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy