/************************************************************************* * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * Copyright 2000, 2010 Oracle and/or its affiliates. * * OpenOffice.org - a multi-platform office productivity suite * * This file is part of OpenOffice.org. * * OpenOffice.org is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License version 3 * only, as published by the Free Software Foundation. * * OpenOffice.org is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License version 3 for more details * (a copy is included in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU Lesser General Public License * version 3 along with OpenOffice.org. If not, see * * for a copy of the LGPLv3 License. * ************************************************************************/ #ifndef __com_sun_star_logging_XLogger_idl__ #define __com_sun_star_logging_XLogger_idl__ #include //============================================================================= module com { module sun { module star { module logging { interface XLogHandler; //============================================================================= /** implemented by a component which is able to log events.

This interface is roughly designed after the Java Logging API. However, there are some differences, the major ones being:

@since OOo 2.3 */ interface XLogger { /** denotes the name of the logger. */ [attribute, readonly] string Name; /** specifies which log events are logged or ignored. @see LogLevel */ [attribute] long Level; /** adds the given handler to the list of handlers.

When an event is logged, the logger will create a LogRecord for this event, and pass this record to all registered handlers. Single handlers might or might not log those records at their own discretion, and depending on additional restrictions such as filters specified at handler level.

Note: The log level of the given handler (XLogHandler::Level) will not be touched. In particular, it will not be set to the logger's log level. It's the responsibility of the component which knits a logger with one or more log handlers to ensure that all loggers have appropriate levels set.

@param LogHandler the handler to add to the list of handlers. The call is ignored if this parameter is . */ void addLogHandler( [in] XLogHandler LogHandler ); /** removes the given handler from the list of handlers. @param LogHandler the handler to remove from the list of handlers. The call is ignored if this parameter is , or if the handler has not previously been added. */ void removeLogHandler( [in] XLogHandler LogHandler ); /** determines whether logger instance would produce any output for the given level.

The method can be used to optimize performance as maybe complex parameter evaluation in the log calls can be omitted if isLoggable evaluates to false.

@param Level level to be checked against @returns if there would be some output for this XLogger for the given level, otherwise. Note that a return value of could also indicate that the logger does not have any log handlers associated with it. @see addLogHandler @see removeLogHandler */ boolean isLoggable( [in] long Level ); /** logs a given message @param Level the log level of this message. If this level is smaller than the logger's Level attribute, then the call will be ignored. @param Message the message to log */ void log( [in] long Level, [in] string Message ); /** logs a given message, detailing the source class and method at which the logged event occurred. @param Level the log level of this message. If this level is smaller than the logger's Level attribute, then the call will be ignored. @param SourceClass the source class at which the logged event occurred. @param SourceMethod the source class at which the logged event occurred. @param Message the message to log */ void logp( [in] long Level, [in] string SourceClassName, [in] string SourceMethodName, [in] string Message ); }; //============================================================================= }; }; }; }; //============================================================================= #endif