summaryrefslogtreecommitdiff
path: root/offapi/com/sun/star/logging
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-06-27 13:47:55 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-06-27 13:47:55 +0000
commit3e640d0fdbb5fbd34ab57043052430d80f0a0df5 (patch)
treea076de38efa47eb63fadfd90abbb01fe074e5e7e /offapi/com/sun/star/logging
parent595fdbdeebaf0ed9ab9f6c8715d4f1156fb4cb3d (diff)
INTEGRATION: CWS sdblogging (1.1.2); FILE ADDED
2007/05/22 19:27:29 fs 1.1.2.1: necessity of this interface suggested by API review
Diffstat (limited to 'offapi/com/sun/star/logging')
-rw-r--r--offapi/com/sun/star/logging/XConsoleHandler.idl75
1 files changed, 75 insertions, 0 deletions
diff --git a/offapi/com/sun/star/logging/XConsoleHandler.idl b/offapi/com/sun/star/logging/XConsoleHandler.idl
new file mode 100644
index 000000000000..8c997c11e57e
--- /dev/null
+++ b/offapi/com/sun/star/logging/XConsoleHandler.idl
@@ -0,0 +1,75 @@
+/*************************************************************************
+ *
+ * OpenOffice.org - a multi-platform office productivity suite
+ *
+ * $RCSfile: XConsoleHandler.idl,v $
+ *
+ * $Revision: 1.2 $
+ *
+ * last change: $Author: hr $ $Date: 2007-06-27 14:47:55 $
+ *
+ * The Contents of this file are made available subject to
+ * the terms of GNU Lesser General Public License Version 2.1.
+ *
+ *
+ * GNU Lesser General Public License Version 2.1
+ * =============================================
+ * Copyright 2005 by Sun Microsystems, Inc.
+ * 901 San Antonio Road, Palo Alto, CA 94303, USA
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License version 2.1, as published by the Free Software Foundation.
+ *
+ * This library 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 for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ ************************************************************************/
+
+#ifndef __offapi_com_sun_star_logging_XConsoleHandler_idl__
+#define __offapi_com_sun_star_logging_XConsoleHandler_idl__
+
+#ifndef __com_sun_star_logging_XLogHandler_idl__
+#include <com/sun/star/logging/XLogHandler.idl>
+#endif
+
+//=============================================================================
+
+module com { module sun { module star { module logging {
+
+//=============================================================================
+
+/** implemented by a log handler whose output channel is the processes console.
+
+ <p>Note that a console handler will ignore its formatter's head and tail, since
+ it cannot decided whether they should be emitted on <code>stdout</code> or <code>stderr</code>.</p>
+
+ @since OOo 2.3
+ */
+interface XConsoleHandler : XLogHandler
+{
+ /** renotes the <type>LogLevel</type> threshold used to determine to which
+ console the events should be logged.
+
+ <p>Events with a level greater or equal to <code>Threshold</code> will be
+ logged to <code>stderr</code>, all others to <code>stdout</code>.</p>
+
+ <p>The default value for this attribute is <member>LogLevel::SEVERE</member>.</p>
+ */
+ [attribute] long Threshold;
+};
+
+//=============================================================================
+
+}; }; }; };
+
+//=============================================================================
+
+#endif