/* * 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.felix.scr.impl.helper; import org.apache.felix.scr.impl.metadata.ComponentMetadata; /** * The <code>Logger</code> interface defines a simple API to enable some logging * in the XML Parser and ComponentMetadata handling classes and at the same * time not be too intrusive for the unit tests. */ public interface Logger { /** * Returns <code>true</code> if logging for the given level is enabled. */ boolean isLogEnabled( int level ); /** * Method to actually emit the log message. If the LogService is available, * the message will be logged through the LogService. Otherwise the message * is logged to stdout (or stderr in case of LOG_ERROR level messages), * * @param level The log level to log the message at * @param pattern The <code>java.text.MessageFormat</code> message format * string for preparing the message * @param arguments The format arguments for the <code>pattern</code> * string. * @param metadata component metadata if known * @param componentId component ID if known * @param ex An optional <code>Throwable</code> whose stack trace is written, */ void log( int level, String pattern, Object[] arguments, ComponentMetadata metadata, Long componentId, Throwable ex ); /** * Writes a messages for the given <code>ComponentMetadata</code>. * * @param level The log level of the messages. This corresponds to the log * levels defined by the OSGi LogService. * @param message The message to print * @param metadata The {@link ComponentMetadata} whose processing caused * the message. This may be <code>null</code> if the component * metadata is not known or applicable. * @param componentId * @param ex The <code>Throwable</code> causing the message to be logged. */ void log( int level, String message, ComponentMetadata metadata, Long componentId, Throwable ex ); }