/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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. */ package org.apache.tomee.jul.formatter; import org.apache.juli.AsyncFileHandler; import java.io.PrintWriter; import java.io.StringWriter; import java.util.logging.ConsoleHandler; import java.util.logging.Filter; import java.util.logging.Formatter; import java.util.logging.Level; import java.util.logging.LogManager; import java.util.logging.LogRecord; public class AsyncConsoleHandler extends AsyncFileHandler { private final ConsoleHandler delegate = new ConsoleHandler() {{ setFormatter(new SingleLineFormatter()); // console -> dev. File uses plain old format }}; protected void publishInternal(final LogRecord record) { delegate.publish(record); } public AsyncConsoleHandler() { LogManager manager = LogManager.getLogManager(); String cname = getClass().getName(); final String lvl = manager.getProperty(cname + ".level"); if (lvl != null) { delegate.setLevel(Level.parse(lvl)); } final String filter = manager.getProperty(cname + ".filter"); if (filter != null) { try { delegate.setFilter(Filter.class.cast(ClassLoader.getSystemClassLoader().loadClass(filter).newInstance())); } catch (final InstantiationException | IllegalAccessException | ClassNotFoundException e) { // no-op like delegate } } final String formatter = manager.getProperty(cname + ".formatter"); if (formatter != null) { try { delegate.setFormatter(Formatter.class.cast(ClassLoader.getSystemClassLoader().loadClass(formatter).newInstance())); } catch (final InstantiationException | IllegalAccessException | ClassNotFoundException e) { // no-op like delegate } } try { delegate.setEncoding(manager.getProperty(cname +".encoding")); } catch (final Exception ex) { // no-op } } @Override public void close() { delegate.close(); } @Override public void flush() { delegate.flush(); } @Override protected void open() { // no-op } @Override protected void closeWriter() { // no-op } @Override protected void openWriter() { // no-op } // copy cause of classloading private static class SingleLineFormatter extends Formatter { private static final String SEP = System.getProperty("line.separator", "\n"); @SuppressWarnings("ThrowableResultOfMethodCallIgnored") @Override public synchronized String format(final LogRecord record) { final boolean exception = record.getThrown() != null; final StringBuilder sbuf = new StringBuilder(); sbuf.append(record.getLevel().getLocalizedName()); sbuf.append(" - "); sbuf.append(this.formatMessage(record)); sbuf.append(SEP); if (exception) { try { final StringWriter sw = new StringWriter(); final PrintWriter pw = new PrintWriter(sw); record.getThrown().printStackTrace(pw); pw.close(); sbuf.append(sw.toString()); } catch (final Exception ex) { // no-op } } return sbuf.toString(); } } }