From b9e7df0cbe67b486ce3a1a2177bd08c0ced9e005 Mon Sep 17 00:00:00 2001 From: "(no author)" <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d> Date: Mon, 22 Dec 2003 17:51:40 +0000 Subject: This commit was manufactured by cvs2svn to create tag 'Build_002'. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build_002@88 d688527b-c9ab-4aba-bd8d-4036d912da1d --- .../at/gv/egovernment/moa/logging/Logger.html | 480 --------------------- 1 file changed, 480 deletions(-) delete mode 100644 spss.server/doc/api-doc-internal/at/gv/egovernment/moa/logging/Logger.html (limited to 'spss.server/doc/api-doc-internal/at/gv/egovernment/moa/logging/Logger.html') diff --git a/spss.server/doc/api-doc-internal/at/gv/egovernment/moa/logging/Logger.html b/spss.server/doc/api-doc-internal/at/gv/egovernment/moa/logging/Logger.html deleted file mode 100644 index ae7d62cf7..000000000 --- a/spss.server/doc/api-doc-internal/at/gv/egovernment/moa/logging/Logger.html +++ /dev/null @@ -1,480 +0,0 @@ - - - - - - -MOA SP/SS Server Internal API: Class Logger - - - - - - - - - - - - - - - - - - - - - -
- -
- - -
- -

- -at.gv.egovernment.moa.logging -
-Class Logger

-
-java.lang.Object
-  |
-  +--at.gv.egovernment.moa.logging.Logger
-
-
-
-
public class Logger
extends Object
- -

-A utility class acting as a facade to the logging subsystem. - - Configure the logging defaultHierarchy that the Logger uses by - calling setHierarchy once before calling any of the logging - output functions. -

-

-
Version:
$Id$
-
Author:
Patrick Peck
-
-
- -

- - - - - - - - - - - - - - - - -
-Constructor Summary
Logger() - -
-           
-  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-Method Summary
-static voiddebug(Object message) - -
-          Log a debug message.
-static voiderror(Object message) - -
-          Log an error message.
-static voiderror(Object message, - Throwable t) - -
-          Log an error message.
-static voidfatal(Object message) - -
-          Log a fatal error message.
-static voidfatal(Object message, - Throwable t) - -
-          Log a fatal error message.
-static voidinfo(Object message) - -
-          Log an info message.
-static booleanisDebugEnabled() - -
-          Test, if the debug log level is enabled.
-static booleanisDebugEnabled(String hierarchy) - -
-          Test, if the debug log level is enabled for a given hierarchy.
-static booleanisTraceEnabled() - -
-          Test, if the trace log level is enabled.
-static booleanisTraceEnabled(String hierarchy) - -
-          Test, if the trace log level is enabled for a given hierarchy.
-static voidsetHierarchy(String hierarchy) - -
-          Set the default hierarchy to which the Logger should send its - logging output.
-static voidtrace(Object message) - -
-          Trace a message.
-static voidwarn(Object message) - -
-          Log a warning message.
-static voidwarn(Object message, - Throwable t) - -
-          Log a warning message.
- - - - - - - -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-  -

- - - - - - - - - - - -
-Constructor Detail
- -

-Logger

-
-public Logger()
-
-
- - - - - - - - -
-Method Detail
- -

-setHierarchy

-
-public static void setHierarchy(String hierarchy)
-
-
Set the default hierarchy to which the Logger should send its - logging output.
-
Parameters:
hierarchy - The logging defaultHierarchy.
-
-
-
- -

-isTraceEnabled

-
-public static boolean isTraceEnabled()
-
-
Test, if the trace log level is enabled.
-
Returns:
boolean true, if tracing output is enabled - false otherwise.
-
-
-
- -

-isTraceEnabled

-
-public static boolean isTraceEnabled(String hierarchy)
-
-
Test, if the trace log level is enabled for a given hierarchy.
-
Parameters:
hierarchy - requested log hierarchy
Returns:
boolean true, if tracing output is enabled - false otherwise.
-
-
-
- -

-trace

-
-public static void trace(Object message)
-
-
Trace a message.
-
Parameters:
message - The message to trace.
-
-
-
- -

-isDebugEnabled

-
-public static boolean isDebugEnabled()
-
-
Test, if the debug log level is enabled.
-
Returns:
boolean true, if debug output is enabled - false otherwise.
-
-
-
- -

-isDebugEnabled

-
-public static boolean isDebugEnabled(String hierarchy)
-
-
Test, if the debug log level is enabled for a given hierarchy.
-
Parameters:
hierarchy - requested log hierarchy
Returns:
boolean true, if debug output is enabled - false otherwise.
-
-
-
- -

-debug

-
-public static void debug(Object message)
-
-
Log a debug message.
-
Parameters:
message - The message to log.
-
-
-
- -

-info

-
-public static void info(Object message)
-
-
Log an info message.
-
Parameters:
message - The message to log.
-
-
-
- -

-warn

-
-public static void warn(Object message)
-
-
Log a warning message.
-
Parameters:
message - The message to log.
-
-
-
- -

-warn

-
-public static void warn(Object message,
-                        Throwable t)
-
-
Log a warning message.
-
Parameters:
message - The message to log.
t - An exception that may be the cause of the warning.
-
-
-
- -

-error

-
-public static void error(Object message)
-
-
Log an error message.
-
Parameters:
message - The message to log.
-
-
-
- -

-error

-
-public static void error(Object message,
-                         Throwable t)
-
-
Log an error message.
-
Parameters:
message - The message to log.
t - An exception that may be the cause of the error.
-
-
-
- -

-fatal

-
-public static void fatal(Object message)
-
-
Log a fatal error message.
-
Parameters:
message - The message to log.
-
-
-
- -

-fatal

-
-public static void fatal(Object message,
-                         Throwable t)
-
-
Log a fatal error message.
-
Parameters:
message - The message to log.
t - An exception that may be the cause of the error.
-
-
- -
- - - - - - - - - - - - - - - - - -
- -
- - -
- - - -- cgit v1.2.3