|
SAP NetWeaver 7.20 (SP01) Composition Environment | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.sap.tc.logging.ExceptionHandling
com.sap.tc.logging.LogController
com.sap.tc.logging.Location
public class Location
Describes messages that originate from delimited source code areas and is above all used to emit trace messages. Typical source code areas are components, packages, classes and methods. Messages related to source code areas are classical trace messages, so if you are above all interested in writing traces, please read this introduction thoroughly.
The class Location is a subclass of LogController, so
you can, with the corresponding calls, emit trace messages and have the
output of those messages to attachable logs controlled via the severities
of the locations and optional filters assigned to them. We recommend to use
the constants provided in the class Severity to specify message
severities.
Locations are named according to the hierarchical structure known from Java
packages. This name structure is mirrored in the hierarchical order of
the locations named. For example, if you would like to write all the
messages from monitoring classes into a single log, you would call the
location named com.sap.tc.monitoring. You could then command
to collect all the messages from technology components in a common log by
simply assigning that log to the parent location com.sap.tc.
The log is then passed on to all child locations, in particular to
com.sap.tc.monitoring. In addition, it is possible to include
method signatures in location names. For example,
com.sap.tc.monitoring.Node.announce(java.lang.Object) is a
location for a method named announce with an argument
of the class Object. In this way, you can distinguish
overloaded methods and, by adding yet another suffix to such a name, even
classes local to them. The hierarchical components of the name have to be
compliant with Java identifier syntax, but you can use illegal characters
bracketing a component with single quotes. For example, to use a component
with a dot, the separator character of location names, write
com.sap.'great.technology'.
Locations are accessed via the static method
Location.getLocation. Although the lookup done in this method
is quite efficient, it should not be called each time a message is to be
generated. Instead, each class should define static fields to hold all
the needed locations, and use these fields to call logging methods. This
might get tedious when a class implements a large number of methods while
at the same time there is no need for separate controlling of output.
Therefore, as described below in more detail, for each logging method there
is a version which takes in an additional parameter called
subloc a string that serves as suffix to the name of the used
location, thus providing you with the option to give a complete location
name whilst avoiding clutter.
Before we take a closer look at an example, a few remarks on output methods
and a short word of warning: do not let the sheer number of methods
overwhelm you. There are two families of methods and the large number stems
above all from the different parameters of these families, and the
resulting combinations. There are methods for emitting clear text messages
and methods for emitting language-independent messages via a message code,
called logT and log, respectively. The message
code is a name looked up in a resource bundle at the time of viewing the
log. Both methods come in flavors that take an array of object arguments.
When using these flavors, the message is expected to take parameters
specified as placeholders of the form
"{<number>}" which are then replaced
with the argument having the same number, or rather with the result of its
method toString. This format is known from the class
java.text.MessageFormat. If the result of
toString is unsuitable for an argument, an arbitrary string
can be passed instead. Note that to output "{" or
"}" you have to put them into single quotes, that is write
"'{'" or "'}'". To print single quotes, double
them in your message.
All the above methods take a first argument that specifies the severities
of the messages. It is recommended to use one of the constants defined in
the class Severity here, for example
Severity.INFO or Severity.ERROR. However, there
are also dedicated methods without that additional argument for all of the
severities, with names of the form <severity>T
and <severity>, which are provided in the same flavors as
logT and log. In addition, there are special
methods for tracing method entries, exits and throwing exceptions, called
entering, exiting and throwing,
respectively, which emit prefabricated Severity.PATH messages.
There is also a method for checking assertions, assertion,
which in case of failure emits a Severity.ERROR message.
To sum up the above, including optional arguments an output call has the following general form:
or
<severity> T([<categories> ,][<sublocation> ,]<message> [ ,<arguments>])
The (optional) argument <categories> is for a parameter called
<severity> (<categories> ,[<sublocation> ,]<message code> [ ,<arguments>][ ,<clear message>]).
category or categories in the actual methods,
depending on whether you pass over a single category or an array of
categories. It is intended to make possible the individual control of
messages falling into the specified categories. You can then set a severity
for this location with respect to each of the categories and thus enable or
disable output of specifically those messages from the location that have
been assigned to one or several of the categories. As a category is itself
a log controller, the same method call can write a message simultaneously
to the trace responsible for the location as well as to a log attached to
the category, save for the necessary severity settings. Both messages get
the same identification in order to facilitate cross-referencing among
location and category logs. Please observe that the argument is not
optional for the second method version emitting language-independent
messages. The reason is that for tracing alone, these messages do not make
sense when you take into account the effort for translation, as opposed to
when one of the category has a log attached. However, in practice most
categories used like this do not have logs.
The optional argument <sublocation> is for a parameter called
subloc in the actual methods. This argument is appended to
the name of the location itself. It is intended for completing the location
name if a method is not represented via its own location because the
corresponding fine control of output is not needed, as described above. The
optional argument <clear message> of the second method version
is for a parameter called msgClear in the actual methods. This
argument is a fallback that is used to show the message if the code could
not be found in the specified resource bundle. Of course, where applicable
these optional arguments are also possible for the two basic calls
logT and log as well as entering,
throwing and assertion.
Let us take a closer look at an example. Due to the suffix option described
above, both messages use the location name
com.sap.tc.monitoring.Node.announce(java.lang.Object).
package com.sap.tc.monitoring;
import com.sap.tc.logging.*;
public class Node {
private static final Location loc = Location.getLocation(Node.class);
private static final Category objMgmt = Category.getCategory("/Objects/Management");
public void announce(Object o) {
final String method = "announce(java.lang.Object)";
loc.entering(method,
new Object[] {o});
try {
// Preparation
...
loc.errorT(objMgmt,
method,
"Registering object {0}.",
new Object[] {o});
// Register object
...
}
finally {
loc.exiting();
}
}
}
Note that the call to exiting is placed inside a
finally clause. This is because a call to
entering must always be balanced with one to
exiting, even in the face of exceptions. Note also that for
the messages to be written to a log attached to the location, its severtiy
must have been set at least with
for the calls ofloc.setEffectiveSevertiy(Severity.PATH);
entering and exiting, and with
loc.setEffectiveSevertiy(objMgmt,
Severity.ERROR);
for the call to errorT, for example during component
initialization. For the example at hand, it would have been alright to
format the messages prior to the call using string concatenation, but in
case of several arguments it is more efficient to use separate arguments.
You can establish custom links among messages. Output methods return the
corresponding log record if a message was written to at least one log. The
identification can be obtained from the log record via the method
LogRecord.getId() and then written as an argument to another
message.
Often, it is useful to put several related messages together into one context. A typical example are all trace messages stemming from one method call. In case of a database log, another example would be the messages representing the different database operations together forming one logical transaction. A formatter or log viewer can utilize this context information to visualize relations using indentation or tree controls.
Please find fundamental information about the principles of error handling
in the package description. For this class, there are three cases where the
methods ExceptionHandling.getException() and ExceptionHandling.throwException() are served.
First, methods dealing with severities pass over a
java.lang.IllegalArgumentException if a value is out of range.
Second, the same exception with a different message is handed over if you
forget to provide categories when needed, which is the case for the calls
setting relative severities as well as for some methods emitting messages.
However, all defective calls of the latter, for example when not providing
a resource bundle or a clear text version in case of a language-independent
message, still write the message in order to facilitate discovering the
site of the call.
Category,
Severity| Field Summary | |
|---|---|
protected String |
csnComponent
|
protected String |
dcName
|
static String |
ROOT_NAME
|
static char |
SEPARATOR
|
static char |
SINGLE_QUOTE
|
static char |
SPACE
|
protected String |
vendor
|
| Fields inherited from class com.sap.tc.logging.LogController |
|---|
INHERITED_SEVERITY, RUN_TIME_SEVERITY, SEVERITY_FROM_CONFIGURATION, SEVERITY_FROM_DC, severityFromDC |
| Fields inherited from class com.sap.tc.logging.ExceptionHandling |
|---|
EX_NO_FILTER_EMSG, EX_NO_FORMATTER_EMSG, EX_NO_INSTANCE_EMSG |
| Constructor Summary | |
|---|---|
protected |
Location(String name)
|
protected |
Location(String name,
Location parent)
|
| Method Summary | |
|---|---|
LogRecord |
assertion(boolean assertion,
String desc)
Logs message of severity Severity.ERROR
which indicates that an assertion has failed. |
LogRecord |
assertion(Category[] categories,
boolean assertion,
String desc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
assertion(Category[] categories,
String subloc,
boolean assertion,
String desc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
assertion(Category category,
boolean assertion,
String desc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
assertion(Category category,
String subloc,
boolean assertion,
String desc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
assertion(String subloc,
boolean assertion,
String desc)
Same as assertion(boolean,
java.lang.String)
but appends a string denoting a sublocation to the name of this location. |
LogRecord |
catching(Category[] categories,
String subloc,
Throwable exc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
catching(Category[] categories,
Throwable exc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
catching(Category category,
String subloc,
Throwable exc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
catching(Category category,
Throwable exc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
catching(String subloc,
Throwable exc)
Same as catching(java.lang.Throwable)
but appends a string denoting a sublocation to the name of this location. |
LogRecord |
catching(Throwable exc)
Logs message of severity Severity.PATH
which indicates that this method location has caught an exception. |
protected String[] |
convertRelatives(LogController[] relatives)
|
LogRecord |
debug(Category[] categories,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
debug(Category[] categories,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
debug(Category category,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(Category category,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debug(MsgObject msgObject)
Same as log(int,
com.sap.tc.logging.MsgObject)
but always emits a debug message, that is a message of severity
Severity.DEBUG. |
LogRecord |
debug(MsgObject msgObject,
Object[] args)
Same as log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG. |
LogRecord |
debug(String subloc,
MsgObject msgObject)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a debug message, that is a message of severity
Severity.DEBUG. |
LogRecord |
debug(String subloc,
MsgObject msgObject,
Object[] args)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG. |
LogRecord |
debugT(Category[] categories,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debugT(Category[] categories,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debugT(Category[] categories,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debugT(Category[] categories,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debugT(Category category,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debugT(Category category,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debugT(Category category,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debugT(Category category,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
debugT(String msg)
Same as logT(int,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG. |
LogRecord |
debugT(String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG. |
LogRecord |
debugT(String subloc,
String msg)
Same as logT(int,
java.lang.String,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG. |
LogRecord |
debugT(String subloc,
String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG. |
LogRecord |
entering()
Logs message of severity Severity.PATH
which indicates that execution had entered this method location. |
LogRecord |
entering(Category category)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
entering(Category[] categories)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
entering(Category[] categories,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
entering(Category[] categories,
String subloc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
entering(Category[] categories,
String subloc,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
entering(Category category,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
entering(Category category,
String subloc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
entering(Category category,
String subloc,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
entering(Object[] args)
Logs message of severity Severity.PATH
which indicates that execution had entered this method location. |
LogRecord |
entering(String subloc)
Same as entering()
but appends a string denoting a sublocation to the name of this location. |
LogRecord |
entering(String subloc,
Object[] args)
Same as entering(java.lang.Object[])
but appends a string denoting a sublocation to the name of this location. |
LogRecord |
error(Category[] categories,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
error(Category[] categories,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
error(Category category,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(Category category,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
error(MsgObject msgObject)
Same as #logT(int,
com.sap.tc.logging.MsgObject)
but always emits an error message, that is a message of severity
Severity.ERROR. |
LogRecord |
error(MsgObject msgObject,
Object[] args)
Same as log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR. |
LogRecord |
error(String subloc,
MsgObject msgObject)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits an error message, that is a message of severity
Severity.ERROR. |
LogRecord |
error(String subloc,
MsgObject msgObject,
Object[] args)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR. |
LogRecord |
errorT(Category[] categories,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
errorT(Category[] categories,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
errorT(Category[] categories,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
errorT(Category[] categories,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
errorT(Category category,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
errorT(Category category,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
errorT(Category category,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
errorT(Category category,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
errorT(String msg)
Same as logT(int,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR. |
LogRecord |
errorT(String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR. |
LogRecord |
errorT(String subloc,
String msg)
Same as logT(int,
java.lang.String,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR. |
LogRecord |
errorT(String subloc,
String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR. |
LogRecord |
exiting()
Logs message of group severity which indicates that execution is about to leave this method location. |
LogRecord |
exiting(Object res)
Logs message of group severity which indicates that execution is about to leave this method location. |
void |
exiting(String subloc)
Same as exiting()
but appends a string denoting a sublocation to the name of this location. |
void |
exiting(String subloc,
Object res)
Same as exiting(java.lang.Object)
but appends a string denoting a sublocation to the name of this location. |
LogRecord |
fatal(Category[] categories,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
fatal(Category[] categories,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
fatal(Category category,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(Category category,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatal(MsgObject msgObject)
Same as log(int,
com.sap.tc.logging.MsgObject)
but always emits a fatal error message, that is a message of severity
Severity.FATAL. |
LogRecord |
fatal(MsgObject msgObject,
Object[] args)
Same as log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL. |
LogRecord |
fatal(String subloc,
MsgObject msgObject)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a fatal error message, that is a message of severity
Severity.FATAL. |
LogRecord |
fatal(String subloc,
MsgObject msgObject,
Object[] args)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL. |
LogRecord |
fatalT(Category[] categories,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatalT(Category[] categories,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatalT(Category[] categories,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatalT(Category[] categories,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatalT(Category category,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatalT(Category category,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatalT(Category category,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatalT(Category category,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
fatalT(String msg)
Same as logT(int,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL. |
LogRecord |
fatalT(String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL. |
LogRecord |
fatalT(String subloc,
String msg)
Same as logT(int,
java.lang.String,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL. |
LogRecord |
fatalT(String subloc,
String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL. |
String |
getCSNComponent()
|
String |
getDCName()
|
static Location |
getLocation(Class forClass)
Gets the location for the specified class. |
static Location |
getLocation(Location loc,
String name)
Gets the location with the specified name relative to another location. |
static Location |
getLocation(Object instance)
Gets the location for the class of the specified instance. |
static Location |
getLocation(String name)
Gets the location with the specified name. |
static Location |
getLocation(String name,
String vendor)
|
static Location |
getLocation(String name,
String dcName,
String csnComponent)
|
Location |
getParent()
Gets the parent location of this location. |
static Location |
getRoot()
Gets the root location. |
String |
getVendor()
|
LogRecord |
info(Category[] categories,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
info(Category[] categories,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
info(Category category,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(Category category,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
info(MsgObject msgObject)
Same as log(int,
com.sap.tc.logging.MsgObject)
but always emits an informational message, that is a message of severity
Severity.INFO. |
LogRecord |
info(MsgObject msgObject,
Object[] args)
Same as log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO. |
LogRecord |
info(String subloc,
MsgObject msgObject)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits an informational message, that is a message of severity
Severity.INFO. |
LogRecord |
info(String subloc,
MsgObject msgObject,
Object[] args)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO. |
LogRecord |
infoT(Category[] categories,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
infoT(Category[] categories,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
infoT(Category[] categories,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
infoT(Category[] categories,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
infoT(Category category,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
infoT(Category category,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
infoT(Category category,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
infoT(Category category,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
infoT(String msg)
Same as logT(int,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO. |
LogRecord |
infoT(String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO. |
LogRecord |
infoT(String subloc,
String msg)
Same as logT(int,
java.lang.String,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO. |
LogRecord |
infoT(String subloc,
String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO. |
LogRecord |
log(int severity,
Category[] categories,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
log(int severity,
Category[] categories,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category[] categories,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
log(int severity,
Category category,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
Category category,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
log(int severity,
MsgObject msgObject)
Logs simple message from this location. |
LogRecord |
log(int severity,
MsgObject msgObject,
Object[] args)
Logs message with parameters from this location. |
LogRecord |
log(int severity,
String subloc,
MsgObject msgObject)
Same as logT(int,
java.lang.String)
but appends a string denoting a sublocation to the name of this location. |
LogRecord |
log(int severity,
String subloc,
MsgObject msgObject,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location. |
LogRecord |
logT(int severity,
Category[] categories,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
logT(int severity,
Category[] categories,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
logT(int severity,
Category[] categories,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
logT(int severity,
Category[] categories,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
logT(int severity,
Category category,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
logT(int severity,
Category category,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
logT(int severity,
Category category,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
logT(int severity,
Category category,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
logT(int severity,
String msg)
Logs simple message from this location. |
LogRecord |
logT(int severity,
String msg,
Object[] args)
Logs message with parameters from this location. |
LogRecord |
logT(int severity,
String subloc,
String msg)
Same as logT(int,
java.lang.String)
but appends a string denoting a sublocation to the name of this location. |
LogRecord |
logT(int severity,
String subloc,
String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location. |
void |
openGroup(int severity)
Deprecated. Groups are not used and implementation was removed for memory usage improvement, Instead use correlation id. |
void |
openGroup(int severity,
Category category)
Deprecated. Groups are not used and implementation was removed for memory usage improvement, Instead use correlation id. |
void |
openGroup(int severity,
Category[] categories)
Deprecated. Groups are not used and implementation was removed for memory usage improvement, Instead use correlation id. |
void |
openGroup(int severity,
Category[] categories,
String subloc)
Deprecated. Groups are not used and implementation was removed for memory usage improvement, Instead use correlation id. |
void |
openGroup(int severity,
Category category,
String subloc)
Deprecated. Groups are not used and implementation was removed for memory usage improvement, Instead use correlation id. |
void |
openGroup(int severity,
String subloc)
Deprecated. Groups are not used and implementation was removed for memory usage improvement, Instead use correlation id. |
LogRecord |
path(Category[] categories,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
path(Category[] categories,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
path(Category category,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter * |
LogRecord |
path(Category category,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
path(MsgObject msgObject)
Same as log(int,
com.sap.tc.logging.MsgObject)
but always emits a path message, that is a message of severity
Severity.PATH. |
LogRecord |
path(MsgObject msgObject,
Object[] args)
Same as log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH. |
LogRecord |
path(String subloc,
MsgObject msgObject)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a path message, that is a message of severity
Severity.PATH. |
LogRecord |
path(String subloc,
MsgObject msgObject,
Object[] args)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH. |
LogRecord |
pathT(Category[] categories,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
pathT(Category[] categories,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
pathT(Category[] categories,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
pathT(Category[] categories,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
pathT(Category category,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
pathT(Category category,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
pathT(Category category,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
pathT(Category category,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
pathT(String msg)
Same as logT(int,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH. |
LogRecord |
pathT(String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH. |
LogRecord |
pathT(String subloc,
String msg)
Same as logT(int,
java.lang.String,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH. |
LogRecord |
pathT(String subloc,
String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH. |
void |
setCSNComponent(String aCSNComponent)
|
void |
setDCName(String aDCName)
|
static void |
setDCSeverity(Location location)
|
void |
setEffectiveSeverity(Category relative)
Deprecated. Relative controllers are obsolete functionality |
void |
setEffectiveSeverity(Category relative,
int severity)
Deprecated. Relative controllers are obsolete functionality |
void |
setMaximumSeverity(Category relative)
Deprecated. Relative controllers are obsolete functionality |
void |
setMaximumSeverity(Category relative,
int severity)
Deprecated. Relative controllers are obsolete functionality |
void |
setMinimumSeverity(Category relative)
Deprecated. Relative controllers are obsolete functionality |
void |
setMinimumSeverity(Category relative,
int severity)
Deprecated. Relative controllers are obsolete functionality |
void |
setVendor(String aVendor)
|
LogRecord |
throwing(Category[] categories,
String subloc,
Throwable exc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
throwing(Category[] categories,
Throwable exc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
throwing(Category category,
String subloc,
Throwable exc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
throwing(Category category,
Throwable exc)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
throwing(String subloc,
Throwable exc)
Same as throwing(java.lang.Throwable)
but appends a string denoting a sublocation to the name of this location. |
LogRecord |
throwing(Throwable exc)
Logs message of severity Severity.PATH
which indicates that this method location is about to throw an exception. |
LogRecord |
traceThrowable(int severity,
MsgObject msgObject,
Object[] args,
Throwable exc)
Trace message with stack trace of given exception, into this loaction. |
LogRecord |
traceThrowable(int severity,
MsgObject msgObject,
Throwable exc)
Trace message with stack trace of given exception, into this location. |
LogRecord |
traceThrowable(int severity,
String subloc,
MsgObject msgObject,
Object[] args,
Throwable exc)
Trace message with stack trace of given exception, into this location. |
LogRecord |
traceThrowable(int severity,
String subloc,
MsgObject msgObject,
Throwable exc)
Trace message with stack trace of given exception, into this location. |
LogRecord |
traceThrowableT(int severity,
Category cat,
String msg,
Object[] args,
Throwable exc)
Deprecated. Not supported. |
LogRecord |
traceThrowableT(int severity,
Category cat,
String subloc,
String msg,
Object[] args,
Throwable exc)
Deprecated. Not supported. |
LogRecord |
traceThrowableT(int severity,
Category cat,
String subloc,
String msg,
Throwable exc)
Deprecated. Not supported. |
LogRecord |
traceThrowableT(int severity,
Category cat,
String msg,
Throwable exc)
Deprecated. Not supported. |
LogRecord |
traceThrowableT(int severity,
String msg,
Object[] args,
Throwable exc)
Trace message with stack trace of given exception, into this loaction. |
LogRecord |
traceThrowableT(int severity,
String subloc,
String msg,
Object[] args,
Throwable exc)
Trace message with stack trace of given exception, into this location. |
LogRecord |
traceThrowableT(int severity,
String subloc,
String msg,
Throwable exc)
Trace message with stack trace of given exception, into this location. |
LogRecord |
traceThrowableT(int severity,
String msg,
Throwable exc)
Trace message with stack trace of given exception, into this location. |
LogRecord |
warning(Category[] categories,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
Object msgCode)
Deprecated. Message Code must be used together with Message Text. |
LogRecord |
warning(Category category,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
String subloc,
MsgObject msgObject)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
String subloc,
Object msgCode)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
String subloc,
Object msgCode,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(Category category,
String subloc,
Object msgCode,
String msgClear)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warning(MsgObject msgObject)
Same as log(int,
com.sap.tc.logging.MsgObject)
but always emits a warning message, that is a message of severity
Severity.WARNING. |
LogRecord |
warning(MsgObject msgObject,
Object[] args)
Same as log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING. |
LogRecord |
warning(String subloc,
MsgObject msgObject)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a warning message, that is a message of severity
Severity.WARNING. |
LogRecord |
warning(String subloc,
MsgObject msgObject,
Object[] args)
Same as log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING. |
LogRecord |
warningT(Category[] categories,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warningT(Category[] categories,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warningT(Category[] categories,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warningT(Category[] categories,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warningT(Category category,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warningT(Category category,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warningT(Category category,
String subloc,
String msg)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warningT(Category category,
String subloc,
String msg,
Object[] args)
Deprecated. Logging to a Category from Location context is not proper. If you want the message to appear both in traces and logs, use Category and pass a Location parameter or issue separate calls to a Location and a Category parameter |
LogRecord |
warningT(String msg)
Same as logT(int,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING. |
LogRecord |
warningT(String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING. |
LogRecord |
warningT(String subloc,
String msg)
Same as logT(int,
java.lang.String,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING. |
LogRecord |
warningT(String subloc,
String msg,
Object[] args)
Same as logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING. |
| Methods inherited from class com.sap.tc.logging.ExceptionHandling |
|---|
getException, getExceptions, handleException, handleException, resetException, throwException |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final String ROOT_NAME
public static final char SEPARATOR
public static final char SPACE
public static final char SINGLE_QUOTE
protected String vendor
protected String dcName
protected String csnComponent
| Constructor Detail |
|---|
protected Location(String name)
protected Location(String name,
Location parent)
| Method Detail |
|---|
public static Location getRoot()
public Location getParent()
public static void setDCSeverity(Location location)
public static Location getLocation(String name)
name - Name of location
IllegalArgumentException - Wrong location name syntaxgetLocation(java.lang.Object),
getLocation(java.lang.Class)
public static Location getLocation(String name,
String vendor)
public static Location getLocation(String name,
String dcName,
String csnComponent)
public static Location getLocation(Object instance)
instance - Instance of class
getLocation(java.lang.String),
getLocation(java.lang.Class)public static Location getLocation(Class forClass)
forClass - Class
getLocation(java.lang.String),
getLocation(java.lang.Object)
public static Location getLocation(Location loc,
String name)
Location.getLocation(loc.getName() + "." + name).
loc - Parent locationname - Name of location
IllegalArgumentException - Wrong location name syntax
public LogRecord log(int severity,
MsgObject msgObject)
severity - Severity of messagemsgObject - Message object of message
public LogRecord log(int severity,
Category category,
MsgObject msgObject)
severity - Severity of messagecategory - Category of messagemsgObject - Message object of message
public LogRecord log(int severity,
Category[] categories,
MsgObject msgObject)
severity - Severity of messagecategories - Categories of messagemsgObject - Message object
public LogRecord log(int severity,
String subloc,
MsgObject msgObject)
logT(int,
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord log(int severity,
Category category,
String subloc,
MsgObject msgObject)
logT(int,
Category,
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategory - Category of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord log(int severity,
Category[] categories,
String subloc,
MsgObject msgObject)
logT(int,
Category[],
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategories - Categories of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord log(int severity,
MsgObject msgObject,
Object[] args)
toString.
severity - Severity of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord log(int severity,
Category category,
MsgObject msgObject,
Object[] args)
toString.
severity - Severity of messagecategory - Category of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord log(int severity,
Category[] categories,
MsgObject msgObject,
Object[] args)
toString.
severity - Severity of messageCategories - Categories of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord log(int severity,
String subloc,
MsgObject msgObject,
Object[] args)
logT(int,
java.lang.String,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord log(int severity,
Category category,
String subloc,
MsgObject msgObject,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategory - Category of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord log(int severity,
Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategories - Categories of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord logT(int severity,
String msg)
severity - Severity of messagemsg - Message text
public LogRecord logT(int severity,
Category category,
String msg)
severity - Severity of messagecategory - Category of messagemsg - Message text
public LogRecord logT(int severity,
Category[] categories,
String msg)
severity - Severity of messagecategories - Categories of messagemsg - Message text
public LogRecord logT(int severity,
String subloc,
String msg)
logT(int,
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagesubloc - Name of sublocationmsg - Message text
public LogRecord logT(int severity,
Category category,
String subloc,
String msg)
logT(int,
Category,
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategory - Category of messagesubloc - Name of sublocationmsg - Message text
public LogRecord logT(int severity,
Category[] categories,
String subloc,
String msg)
logT(int,
Category[],
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategories - Categories of messagesubloc - Name of sublocationmsg - Message text
public LogRecord logT(int severity,
String msg,
Object[] args)
toString.
severity - Severity of messagemsg - Message templateargs - Arguments as object references
public LogRecord logT(int severity,
Category category,
String msg,
Object[] args)
toString.
severity - Severity of messagecategory - Category of messagemsg - Message templateargs - Arguments as object references
public LogRecord logT(int severity,
Category[] categories,
String msg,
Object[] args)
toString.
severity - Severity of messageCategories - Categories of messagemsg - Message templateargs - Arguments as object references
public LogRecord logT(int severity,
String subloc,
String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagesubloc - Name of sublocationmsg - Message textargs - Arguments as object references
public LogRecord logT(int severity,
Category category,
String subloc,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategory - Category of messagesubloc - Name of sublocationmsg - Message textargs - Arguments as object references
public LogRecord logT(int severity,
Category[] categories,
String subloc,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategories - Categories of messagesubloc - Name of sublocationmsg - Message textargs - Arguments as object references
public LogRecord log(int severity,
Category category,
Object msgCode)
severity - Severity of messagecategory - Category of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category[] categories,
Object msgCode)
severity - Severity of messagecategories - Categories of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category category,
String subloc,
Object msgCode)
log(int,
Category,
java.lang.Object)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategory - Category of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category[] categories,
String subloc,
Object msgCode)
log(int,
Category[],
java.lang.Object)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category category,
Object msgCode,
Object[] args)
toString. This method also stores a clear text version of the
message, taken from the resource bundle for language code en and
country code US, which is displayed whenever a log viewer cannot
resolve a message code.
severity - Severity of messagecategory - Category of messagemsgCode - Resource name of message templateargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category[] categories,
Object msgCode,
Object[] args)
toString. This method also stores a clear text version of the
message, taken from the resource bundle for language code en and
country code US, which is displayed whenever a log viewer cannot
resolve a message code.
severity - Severity of messagecategories - Categories of messagemsgCode - Resource name of message templateargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category category,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.Object,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategory - Category of messagesubloc - Name of sublocationmsgCode - Resource name of message templateargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category[] categories,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.Object,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of message templateargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category category,
Object msgCode,
String msgClear)
severity - Severity of messagecategory - Category of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category[] categories,
Object msgCode,
String msgClear)
severity - Severity of messagecategories - Categories of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category category,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategory - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category[] categories,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category category,
Object msgCode,
Object[] args,
String msgClear)
toString. This method also stores a clear text version of the
message which is displayed whenever a log viewer cannot resolve a message
code.
severity - Severity of messagecategory - Category of messagemsgCode - Resource name of message templateargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
toString. This method also stores a clear text version of the
message which is displayed whenever a log viewer cannot resolve a message
code.
severity - Severity of messagecategories - Categories of messagemsgCode - Resource name of message templateargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategory - Category of messagesubloc - Name of sublocationmsgCode - Resource name of message templateargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord log(int severity,
Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.Object[],
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
severity - Severity of messagecategories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of message templateargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)public LogRecord debug(MsgObject msgObject)
log(int,
com.sap.tc.logging.MsgObject)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
msgObject - Message object
public LogRecord debug(Category category,
MsgObject msgObject)
log(int,
Category,
com.sap.tc.logging.MsgObject)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagemsgObject - Message object
public LogRecord debug(Category[] categories,
MsgObject msgObject)
log(int,
Category[],
com.sap.tc.logging.MsgObject)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagemsgObject - Message object
public LogRecord debug(String subloc,
MsgObject msgObject)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
subloc - Name of sublocationmsgObject - Message object
public LogRecord debug(Category category,
String subloc,
MsgObject msgObject)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord debug(Category[] categories,
String subloc,
MsgObject msgObject)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord debug(MsgObject msgObject,
Object[] args)
log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
msgObject - Message objectargs - Arguments as object references
public LogRecord debug(Category category,
MsgObject msgObject,
Object[] args)
log(int,
Category,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord debug(Category[] categories,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord debug(String subloc,
MsgObject msgObject,
Object[] args)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
subloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord debug(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord debug(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord debugT(String msg)
logT(int,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
msg - Message text
public LogRecord debugT(Category category,
String msg)
logT(int,
Category,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagemsg - Message text
public LogRecord debugT(Category[] categories,
String msg)
logT(int,
Category[],
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagemsg - Message text
public LogRecord debugT(String subloc,
String msg)
logT(int,
java.lang.String,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
subloc - Name of sublocationmsg - Message text
public LogRecord debugT(Category category,
String subloc,
String msg)
logT(int,
Category,
java.lang.String,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagesubloc - Name of sublocationmsg - Message text
public LogRecord debugT(Category[] categories,
String subloc,
String msg)
logT(int,
Category[],
java.lang.String,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagesubloc - Name of sublocationmsg - Message text
public LogRecord debugT(String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
msg - Message templateargs - Arguments as object references
public LogRecord debugT(Category category,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagemsg - Message templateargs - Arguments as object references
public LogRecord debugT(Category[] categories,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagemsg - Message templateargs - Arguments as object references
public LogRecord debugT(String subloc,
String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
subloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord debugT(Category category,
String subloc,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord debugT(Category[] categories,
String subloc,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord debug(Category category,
Object msgCode)
log(int,
Category,
java.lang.Object)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category[] categories,
Object msgCode)
log(int,
Category[],
java.lang.Object)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category category,
String subloc,
Object msgCode)
log(int,
Category,
java.lang.String,
java.lang.Object)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category[] categories,
String subloc,
Object msgCode)
log(int,
Category[],
java.lang.String,
java.lang.Object)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category category,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.Object,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category[] categories,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.Object,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category category,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category category,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category[] categories,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category category,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category category,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord debug(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a debug message, that is a message of severity
Severity.DEBUG.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)public LogRecord path(MsgObject msgObject)
log(int,
com.sap.tc.logging.MsgObject)
but always emits a path message, that is a message of severity
Severity.PATH.
msgObject - Message object
public LogRecord path(Category category,
MsgObject msgObject)
log(int,
Category,
com.sap.tc.logging.MsgObject)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagemsgObject - Message object
public LogRecord path(Category[] categories,
MsgObject msgObject)
log(int,
Category[],
com.sap.tc.logging.MsgObject)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagemsgObject - Message object
public LogRecord path(String subloc,
MsgObject msgObject)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a path message, that is a message of severity
Severity.PATH.
subloc - Name of sublocationmsgObject - Message object
public LogRecord path(Category category,
String subloc,
MsgObject msgObject)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord path(Category[] categories,
String subloc,
MsgObject msgObject)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord path(MsgObject msgObject,
Object[] args)
log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
msgObject - Message objectargs - Arguments as object references
public LogRecord path(Category category,
MsgObject msgObject,
Object[] args)
log(int,
Category,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord path(Category[] categories,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord path(String subloc,
MsgObject msgObject,
Object[] args)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
subloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord path(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord path(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord pathT(String msg)
logT(int,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
msg - Message text
public LogRecord pathT(Category category,
String msg)
logT(int,
Category,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagemsg - Message text
public LogRecord pathT(Category[] categories,
String msg)
logT(int,
Category[],
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagemsg - Message text
public LogRecord pathT(String subloc,
String msg)
logT(int,
java.lang.String,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
subloc - Name of sublocationmsg - Message text
public LogRecord pathT(Category category,
String subloc,
String msg)
logT(int,
Category,
java.lang.String,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagesubloc - Name of sublocationmsg - Message text
public LogRecord pathT(Category[] categories,
String subloc,
String msg)
logT(int,
Category[],
java.lang.String,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagesubloc - Name of sublocationmsg - Message text
public LogRecord pathT(String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
msg - Message templateargs - Arguments as object references
public LogRecord pathT(Category category,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagemsg - Message templateargs - Arguments as object references
public LogRecord pathT(Category[] categories,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagemsg - Message templateargs - Arguments as object references
public LogRecord pathT(String subloc,
String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
subloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord pathT(Category category,
String subloc,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord pathT(Category[] categories,
String subloc,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord path(Category category,
Object msgCode)
log(int,
Category,
java.lang.Object)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category[] categories,
Object msgCode)
log(int,
Category[],
java.lang.Object)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category category,
String subloc,
Object msgCode)
log(int,
Category,
java.lang.String,
java.lang.Object)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category[] categories,
String subloc,
Object msgCode)
log(int,
Category[],
java.lang.String,
java.lang.Object)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category category,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.Object,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category[] categories,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.Object,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category category,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category category,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category[] categories,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category category,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category category,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord path(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a path message, that is a message of severity
Severity.PATH.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)public LogRecord info(MsgObject msgObject)
log(int,
com.sap.tc.logging.MsgObject)
but always emits an informational message, that is a message of severity
Severity.INFO.
msgObject - Message object
public LogRecord info(Category category,
MsgObject msgObject)
log(int,
Category,
com.sap.tc.logging.MsgObject)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagemsgObject - Message object
public LogRecord info(Category[] categories,
MsgObject msgObject)
log(int,
Category[],
com.sap.tc.logging.MsgObject)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagemsgObject - Message object
public LogRecord info(String subloc,
MsgObject msgObject)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits an informational message, that is a message of severity
Severity.INFO.
subloc - Name of sublocationmsgObject - Message object
public LogRecord info(Category category,
String subloc,
MsgObject msgObject)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord info(Category[] categories,
String subloc,
MsgObject msgObject)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord info(MsgObject msgObject,
Object[] args)
log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
msgObject - Message objectargs - Arguments as object references
public LogRecord info(Category category,
MsgObject msgObject,
Object[] args)
log(int,
Category,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord info(Category[] categories,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord info(String subloc,
MsgObject msgObject,
Object[] args)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
subloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord info(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord info(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord infoT(String msg)
logT(int,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
msg - Message text
public LogRecord infoT(Category category,
String msg)
logT(int,
Category,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagemsg - Message text
public LogRecord infoT(Category[] categories,
String msg)
logT(int,
Category[],
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagemsg - Message text
public LogRecord infoT(String subloc,
String msg)
logT(int,
java.lang.String,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
subloc - Name of sublocationmsg - Message text
public LogRecord infoT(Category category,
String subloc,
String msg)
logT(int,
Category,
java.lang.String,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagesubloc - Name of sublocationmsg - Message text
public LogRecord infoT(Category[] categories,
String subloc,
String msg)
logT(int,
Category[],
java.lang.String,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagesubloc - Name of sublocationmsg - Message text
public LogRecord infoT(String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
msg - Message templateargs - Arguments as object references
public LogRecord infoT(Category category,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagemsg - Message templateargs - Arguments as object references
public LogRecord infoT(Category[] categories,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagemsg - Message templateargs - Arguments as object references
public LogRecord infoT(String subloc,
String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
subloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord infoT(Category category,
String subloc,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord infoT(Category[] categories,
String subloc,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord info(Category category,
Object msgCode)
log(int,
Category,
java.lang.Object)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category[] categories,
Object msgCode)
log(int,
Category[],
java.lang.Object)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category category,
String subloc,
Object msgCode)
log(int,
Category,
java.lang.String,
java.lang.Object)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category[] categories,
String subloc,
Object msgCode)
log(int,
Category[],
java.lang.String,
java.lang.Object)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category category,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.Object,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category[] categories,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.Object,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category category,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category category,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category[] categories,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category category,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category category,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord info(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits an informational message, that is a message of severity
Severity.INFO.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)public LogRecord warning(MsgObject msgObject)
log(int,
com.sap.tc.logging.MsgObject)
but always emits a warning message, that is a message of severity
Severity.WARNING.
msgObject - Message object
public LogRecord warning(Category category,
MsgObject msgObject)
log(int,
Category,
com.sap.tc.logging.MsgObject)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagemsgObject - Message object
public LogRecord warning(Category[] categories,
MsgObject msgObject)
log(int,
Category[],
com.sap.tc.logging.MsgObject)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagemsgObject - Message object
public LogRecord warning(String subloc,
MsgObject msgObject)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a warning message, that is a message of severity
Severity.WARNING.
subloc - Name of sublocationmsgObject - Message object
public LogRecord warning(Category category,
String subloc,
MsgObject msgObject)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord warning(Category[] categories,
String subloc,
MsgObject msgObject)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord warning(MsgObject msgObject,
Object[] args)
log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
msgObject - Message objectargs - Arguments as object references
public LogRecord warning(Category category,
MsgObject msgObject,
Object[] args)
log(int,
Category,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord warning(Category[] categories,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord warning(String subloc,
MsgObject msgObject,
Object[] args)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
subloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord warning(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord warning(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagesubloc - Name of sublocationMsgObject - Message objectargs - Arguments as object references
public LogRecord warningT(String msg)
logT(int,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
msg - Message text
public LogRecord warningT(Category category,
String msg)
logT(int,
Category,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagemsg - Message text
public LogRecord warningT(Category[] categories,
String msg)
logT(int,
Category[],
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagemsg - Message text
public LogRecord warningT(String subloc,
String msg)
logT(int,
java.lang.String,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
subloc - Name of sublocationmsg - Message text
public LogRecord warningT(Category category,
String subloc,
String msg)
logT(int,
Category,
java.lang.String,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagesubloc - Name of sublocationmsg - Message text
public LogRecord warningT(Category[] categories,
String subloc,
String msg)
logT(int,
Category[],
java.lang.String,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagesubloc - Name of sublocationmsg - Message text
public LogRecord warningT(String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
msg - Message templateargs - Arguments as object references
public LogRecord warningT(Category category,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagemsg - Message templateargs - Arguments as object references
public LogRecord warningT(Category[] categories,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagemsg - Message templateargs - Arguments as object references
public LogRecord warningT(String subloc,
String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
subloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord warningT(Category category,
String subloc,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord warningT(Category[] categories,
String subloc,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord warning(Category category,
Object msgCode)
log(int,
Category,
java.lang.Object)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category[] categories,
Object msgCode)
log(int,
Category[],
java.lang.Object)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category category,
String subloc,
Object msgCode)
log(int,
Category,
java.lang.String,
java.lang.Object)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category[] categories,
String subloc,
Object msgCode)
log(int,
Category[],
java.lang.String,
java.lang.Object)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category category,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.Object,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category[] categories,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.Object,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category category,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category category,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category[] categories,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category category,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category category,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord warning(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a warning message, that is a message of severity
Severity.WARNING.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)public LogRecord error(MsgObject msgObject)
#logT(int,
com.sap.tc.logging.MsgObject)
but always emits an error message, that is a message of severity
Severity.ERROR.
msgObject - Message object
public LogRecord error(Category category,
MsgObject msgObject)
log(int,
Category,
com.sap.tc.logging.MsgObject)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagemsgObject - Message object
public LogRecord error(Category[] categories,
MsgObject msgObject)
log(int,
Category[],
com.sap.tc.logging.MsgObject)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagemsgObject - Message object
public LogRecord error(String subloc,
MsgObject msgObject)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits an error message, that is a message of severity
Severity.ERROR.
subloc - Name of sublocationmsgObject - Message object
public LogRecord error(Category category,
String subloc,
MsgObject msgObject)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord error(Category[] categories,
String subloc,
MsgObject msgObject)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord error(MsgObject msgObject,
Object[] args)
log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
msgObject - Message objectargs - Arguments as object references
public LogRecord error(Category category,
MsgObject msgObject,
Object[] args)
log(int,
Category,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord error(Category[] categories,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord error(String subloc,
MsgObject msgObject,
Object[] args)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
subloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord error(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord error(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord errorT(String msg)
logT(int,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
msg - Message text
public LogRecord errorT(Category category,
String msg)
logT(int,
Category,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagemsg - Message text
public LogRecord errorT(Category[] categories,
String msg)
logT(int,
Category[],
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagemsg - Message text
public LogRecord errorT(String subloc,
String msg)
logT(int,
java.lang.String,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
subloc - Name of sublocationmsg - Message text
public LogRecord errorT(Category category,
String subloc,
String msg)
logT(int,
Category,
java.lang.String,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagesubloc - Name of sublocationmsg - Message text
public LogRecord errorT(Category[] categories,
String subloc,
String msg)
logT(int,
Category[],
java.lang.String,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagesubloc - Name of sublocationmsg - Message text
public LogRecord errorT(String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
msg - Message templateargs - Arguments as object references
public LogRecord errorT(Category category,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagemsg - Message templateargs - Arguments as object references
public LogRecord errorT(Category[] categories,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagemsg - Message templateargs - Arguments as object references
public LogRecord errorT(String subloc,
String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
subloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord errorT(Category category,
String subloc,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord errorT(Category[] categories,
String subloc,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord error(Category category,
Object msgCode)
log(int,
Category,
java.lang.Object)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category[] categories,
Object msgCode)
log(int,
Category[],
java.lang.Object)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category category,
String subloc,
Object msgCode)
log(int,
Category,
java.lang.String,
java.lang.Object)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category[] categories,
String subloc,
Object msgCode)
log(int,
Category[],
java.lang.String,
java.lang.Object)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category category,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.Object,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category[] categories,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.Object,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category category,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category category,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category[] categories,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category category,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category category,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord error(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits an error message, that is a message of severity
Severity.ERROR.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)public LogRecord fatal(MsgObject msgObject)
log(int,
com.sap.tc.logging.MsgObject)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
msgObject - Message object
public LogRecord fatal(Category category,
MsgObject msgObject)
log(int,
Category,
com.sap.tc.logging.MsgObject)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagemsgObject - Message object
public LogRecord fatal(Category[] categories,
MsgObject msgObject)
log(int,
Category[],
com.sap.tc.logging.MsgObject)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagemsgObject - Message object
public LogRecord fatal(String subloc,
MsgObject msgObject)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
subloc - Name of sublocationmsgObject - Message object
public LogRecord fatal(Category category,
String subloc,
MsgObject msgObject)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord fatal(Category[] categories,
String subloc,
MsgObject msgObject)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message object
public LogRecord fatal(MsgObject msgObject,
Object[] args)
log(int,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
msgObject - Message objectargs - Arguments as object references
public LogRecord fatal(Category category,
MsgObject msgObject,
Object[] args)
log(int,
Category,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord fatal(Category[] categories,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagemsgObject - Message objectargs - Arguments as object references
public LogRecord fatal(String subloc,
MsgObject msgObject,
Object[] args)
log(int,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
subloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord fatal(Category category,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category,
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord fatal(Category[] categories,
String subloc,
MsgObject msgObject,
Object[] args)
log(int,
Category[],
java.lang.String,
com.sap.tc.logging.MsgObject,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object references
public LogRecord fatalT(String msg)
logT(int,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
msg - Message text
public LogRecord fatalT(Category category,
String msg)
logT(int,
Category,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagemsg - Message text
public LogRecord fatalT(Category[] categories,
String msg)
logT(int,
Category[],
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagemsg - Message text
public LogRecord fatalT(String subloc,
String msg)
logT(int,
java.lang.String,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
subloc - Name of sublocationmsg - Message text
public LogRecord fatalT(Category category,
String subloc,
String msg)
logT(int,
Category,
java.lang.String,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagesubloc - Name of sublocationmsg - Message text
public LogRecord fatalT(Category[] categories,
String subloc,
String msg)
logT(int,
Category[],
java.lang.String,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagesubloc - Name of sublocationmsg - Message text
public LogRecord fatalT(String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
msg - Message templateargs - Arguments as object references
public LogRecord fatalT(Category category,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagemsg - Message templateargs - Arguments as object references
public LogRecord fatalT(Category[] categories,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagemsg - Message templateargs - Arguments as object references
public LogRecord fatalT(String subloc,
String msg,
Object[] args)
logT(int,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
subloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord fatalT(Category category,
String subloc,
String msg,
Object[] args)
logT(int,
Category,
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord fatalT(Category[] categories,
String subloc,
String msg,
Object[] args)
logT(int,
Category[],
java.lang.String,
java.lang.String,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object references
public LogRecord fatal(Category category,
Object msgCode)
log(int,
Category,
java.lang.Object)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category[] categories,
Object msgCode)
log(int,
Category[],
java.lang.Object)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagemsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category category,
String subloc,
Object msgCode)
log(int,
Category,
java.lang.String,
java.lang.Object)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category[] categories,
String subloc,
Object msgCode)
log(int,
Category[],
java.lang.String,
java.lang.Object)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category category,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.Object,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category[] categories,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.Object,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category category,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category[] categories,
String subloc,
Object msgCode,
Object[] args)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[])
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object references
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category category,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category[] categories,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagemsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category category,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category[] categories,
String subloc,
Object msgCode,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messagemsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category category,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category[] categories,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagemsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category category,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category,
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
category - Category of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)
public LogRecord fatal(Category[] categories,
String subloc,
Object msgCode,
Object[] args,
String msgClear)
log(int,
Category[],
java.lang.String,
java.lang.Object,
java.lang.Object[],
java.lang.String)
but always emits a fatal error message, that is a message of severity
Severity.FATAL.
categories - Categories of messagesubloc - Name of sublocationmsgCode - Resource name of messageargs - Arguments as object referencesmsgClear - Clear text version of message
LogController.setResourceBundleName(java.lang.String)public LogRecord entering()
Severity.PATH
which indicates that execution had entered this method location. This
method is restricted to locations standing for methods and must be
balanced with a call to the method exiting when leaving, for
example exiting(java.lang.Object).
public LogRecord entering(Category category)
Severity.PATH
which indicates that execution had entered this method location. This
method is restricted to locations standing for methods and must be
balanced with a call to the method exiting when leaving, for
example exiting(java.lang.Object).
category - Category of message
public LogRecord entering(Category[] categories)
Severity.PATH
which indicates that execution had entered this method location. This
method is restricted to locations standing for methods and must be
balanced with a call to the method exiting when leaving, for
example exiting(java.lang.Object).
categories - Categories of message
public LogRecord entering(String subloc)
entering()
but appends a string denoting a sublocation to the name of this location.
This method must be balanced with a call to
exiting when leaving the traced method, for example
exiting(java.lang.Object).
subloc - Name of sublocation
public LogRecord entering(Category category,
String subloc)
entering(Category)
but appends a string denoting a sublocation to the name of this location.
This method must be balanced with a call to
exiting when leaving the traced method, for example
exiting(java.lang.Object).
category - Category of messagesubloc - Name of sublocation
public LogRecord entering(Category[] categories,
String subloc)
entering(Category[])
but appends a string denoting a sublocation to the name of this location.
This method must be balanced with a call to
exiting when leaving the traced method, for example
exiting(java.lang.Object).
categories - Categories of messagesubloc - Name of sublocation
public LogRecord entering(Object[] args)
Severity.PATH
which indicates that execution had entered this method location. This
method is restricted to locations standing for methods and must be
balanced with a call to the method exiting when leaving, for
example exiting(java.lang.Object). The objects handed over are the
(possibly wrapped) arguments to the method and are written using the method
toString.
args - Arguments as object references
public LogRecord entering(Category category,
Object[] args)
Severity.PATH
which indicates that execution had entered this method location. This
method is restricted to locations standing for methods and must be
balanced with a call to the method exiting when leaving, for
example exiting(java.lang.Object). The objects handed over are the
(possibly wrapped) arguments to the method and are written using the method
toString.
category - Category of messageargs - Arguments as object references
public LogRecord entering(Category[] categories,
Object[] args)
Severity.PATH
which indicates that execution had entered this method location. This
method is restricted to locations standing for methods and must be
balanced with a call to the method exiting when leaving, for
example exiting(java.lang.Object). The objects handed over are the
(possibly wrapped) arguments to the method and are written using the method
toString.
categories - Categories of messageargs - Arguments as object references
public LogRecord entering(String subloc,
Object[] args)
entering(java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
This method must be balanced with a call to
exiting when leaving the traced method, for example
exiting(java.lang.Object).
subloc - Name of sublocationargs - Arguments as object references
public LogRecord entering(Category category,
String subloc,
Object[] args)
entering(Category,
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
This method must be balanced with a call to
exiting when leaving the traced method, for example
exiting(java.lang.Object).
category - Category of messagesubloc - Name of sublocationargs - Arguments as object references
public LogRecord entering(Category[] categories,
String subloc,
Object[] args)
entering(Category[],
java.lang.Object[])
but appends a string denoting a sublocation to the name of this location.
This method must be balanced with a call to
exiting when leaving the traced method, for example
exiting(java.lang.Object).
categories - Categories of messagesubloc - Name of sublocationargs - Arguments as object references
public LogRecord exiting()
entering, for example
entering(java.lang.String,
java.lang.Object[]).
public void exiting(String subloc)
exiting()
but appends a string denoting a sublocation to the name of this location.
subloc - Name of sublocationpublic LogRecord exiting(Object res)
entering, for example
entering(java.lang.String,
java.lang.Object[]).
The object handed over is the (possibly wrapped) result of the method and
is written using its method toString.
res - Result as object reference
public void exiting(String subloc,
Object res)
exiting(java.lang.Object)
but appends a string denoting a sublocation to the name of this location.
subloc - Name of sublocationres - Result as object reference
public LogRecord assertion(boolean assertion,
String desc)
Severity.ERROR
which indicates that an assertion has failed. This method is restricted to
locations standing for methods.
assertion - Condition that is asserteddesc - Text describing the assertion, often the text of the
boolean expression specified as first argument
public LogRecord assertion(Category category,
boolean assertion,
String desc)
Severity.ERROR
which indicates that an assertion has failed. This method is restricted to
locations standing for methods.
category - Category of messageassertion - Condition that is asserteddesc - Text describing the assertion, often the text of the
boolean expression specified as first argument
public LogRecord assertion(Category[] categories,
boolean assertion,
String desc)
Severity.ERROR
which indicates that an assertion has failed. This method is restricted to
locations standing for methods.
categories - Categories of messageassertion - Condition that is asserteddesc - Text describing the assertion, often the text of the
boolean expression specified as first argument
public LogRecord assertion(String subloc,
boolean assertion,
String desc)
assertion(boolean,
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
subloc - Name of sublocationassertion - Condition that is asserteddesc - Text describing the assertion, often the text of the
boolean expression specified as second argument
public LogRecord assertion(Category category,
String subloc,
boolean assertion,
String desc)
assertion(Category,
boolean,
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
category - Category of messagesubloc - Name of sublocationassertion - Condition that is asserteddesc - Text describing the assertion, often the text of the
boolean expression specified as second argument
public LogRecord assertion(Category[] categories,
String subloc,
boolean assertion,
String desc)
assertion(Category[],
boolean,
java.lang.String)
but appends a string denoting a sublocation to the name of this location.
categories - Categories of messagesubloc - Name of sublocationassertion - Condition that is asserteddesc - Text describing the assertion, often the text of the
boolean expression specified as second argument
public LogRecord throwing(Throwable exc)
Severity.PATH
which indicates that this method location is about to throw an exception.
This method is restricted to locations standing for methods. The exception
is written using its method toString.
exc - Exception about to be thrown
public LogRecord throwing(Category category,
Throwable exc)
Severity.PATH
which indicates that this method location is about to throw an exception.
This method is restricted to locations standing for methods. The exception
is written using its method toString.
category - Category of messageexc - Exception about to be thrown
public LogRecord throwing(Category[] categories,
Throwable exc)
Severity.PATH
which indicates that this method location is about to throw an exception.
This method is restricted to locations standing for methods. The exception
is written using its method toString.
categories - Categories of messageexc - Exception about to be thrown
public LogRecord throwing(String subloc,
Throwable exc)
throwing(java.lang.Throwable)
but appends a string denoting a sublocation to the name of this location.
subloc - Name of sublocationexc - Exception about to be thrown
public LogRecord throwing(Category category,
String subloc,
Throwable exc)
throwing(Category,
java.lang.Throwable)
but appends a string denoting a sublocation to the name of this location.
category - Category of messagesubloc - Name of sublocationexc - Exception about to be thrown
public LogRecord throwing(Category[] categories,
String subloc,
Throwable exc)
throwing(Category[],
java.lang.Throwable)
but appends a string denoting a sublocation to the name of this location.
categories - Categories of messagesubloc - Name of sublocationexc - Exception about to be thrown
public LogRecord catching(Throwable exc)
Severity.PATH
which indicates that this method location has caught an exception.
This method is restricted to locations standing for methods. The exception
is written using its method printStackTrace.
exc - Exception caught
public LogRecord catching(Category category,
Throwable exc)
Severity.PATH
which indicates that this method location has caught an exception.
This method is restricted to locations standing for methods. The exception
is written using its method printStackTrace.
category - Category of messageexc - Exception caught
public LogRecord catching(Category[] categories,
Throwable exc)
Severity.PATH
which indicates that this method location has caught an exception.
This method is restricted to locations standing for methods. The exception
is written using its method printStackTrace.
categories - Categories of messageexc - Exception caught
public LogRecord catching(String subloc,
Throwable exc)
catching(java.lang.Throwable)
but appends a string denoting a sublocation to the name of this location.
subloc - Name of sublocationexc - Exception caught
public LogRecord catching(Category category,
String subloc,
Throwable exc)
catching(Category,
java.lang.Throwable)
but appends a string denoting a sublocation to the name of this location.
category - Category of messagesubloc - Name of sublocationexc - Exception caught
public LogRecord catching(Category[] categories,
String subloc,
Throwable exc)
catching(Category[],
java.lang.Throwable)
but appends a string denoting a sublocation to the name of this location.
categories - Categories of messagesubloc - Name of sublocationexc - Exception caught
public LogRecord traceThrowable(int severity,
MsgObject msgObject,
Throwable exc)
severity - Severity of messagemsgObject - Message objectexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowable(int severity,
String subloc,
MsgObject msgObject,
Throwable exc)
severity - Severity of messagesubloc - Name of sublocationmsgObject - Message objectexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowable(int severity,
MsgObject msgObject,
Object[] args,
Throwable exc)
severity - Severity of messagemsgObject - Message objectargs - Arguments as object referencesexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowable(int severity,
String subloc,
MsgObject msgObject,
Object[] args,
Throwable exc)
severity - Severity of messagesubloc - Name of sublocationmsgObject - Message objectargs - Arguments as object referencesexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowableT(int severity,
String msg,
Throwable exc)
severity - Severity of messagemsg - Message templateexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowableT(int severity,
String subloc,
String msg,
Throwable exc)
severity - Severity of messagesubloc - Name of sublocationmsg - Message templateexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowableT(int severity,
String msg,
Object[] args,
Throwable exc)
severity - Severity of messagemsg - Message templateargs - Arguments as object referencesexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowableT(int severity,
String subloc,
String msg,
Object[] args,
Throwable exc)
severity - Severity of messagesubloc - Name of sublocationmsg - Message templateargs - Arguments as object referencesexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowableT(int severity,
Category cat,
String msg,
Throwable exc)
severity - Severity of messagecat - Category message stems frommsg - Message templateexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowableT(int severity,
Category cat,
String subloc,
String msg,
Throwable exc)
severity - Severity of messagecat - Category message stems fromsubloc - Name of sublocationmsg - Message templateexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowableT(int severity,
Category cat,
String msg,
Object[] args,
Throwable exc)
severity - Severity of messagecat - Category message stems frommsg - Message templateargs - Arguments as object referencesexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)
public LogRecord traceThrowableT(int severity,
Category cat,
String subloc,
String msg,
Object[] args,
Throwable exc)
severity - Severity of messagecat - Category message stems fromsubloc - Name of sublocationmsg - Message templateargs - Arguments as object referencesexc - Throwable, the superclass of all errors and exceptions
LogController.setResourceBundleName(java.lang.String)public void openGroup(int severity)
public void openGroup(int severity,
String subloc)
public void openGroup(int severity,
Category category)
public void openGroup(int severity,
Category category,
String subloc)
public void openGroup(int severity,
Category[] categories)
public void openGroup(int severity,
Category[] categories,
String subloc)
public void setMinimumSeverity(Category relative,
int severity)
setEffectiveSeverity(Category,
int).
severity - New minimum severitypublic void setMinimumSeverity(Category relative)
setMinimumSeverity(Category,
int) with
Severity.ALL.
public void setEffectiveSeverity(Category relative,
int severity)
setMinimumSeverity(Category,
int)
and
setMaximumSeverity(Category,
int).
severity - New effective severitypublic void setEffectiveSeverity(Category relative)
setMinimumSeverity(Category) and
setMaximumSeverity(Category).
public void setMaximumSeverity(Category relative,
int severity)
setEffectiveSeverity(Category,
int).
severity - New maximum severitypublic void setMaximumSeverity(Category relative)
setMaximumSeverity(Category,
int) with
Severity.ALL.
protected String[] convertRelatives(LogController[] relatives)
convertRelatives in class LogControllerpublic void setVendor(String aVendor)
public String getVendor()
public void setDCName(String aDCName)
public String getDCName()
public void setCSNComponent(String aCSNComponent)
public String getCSNComponent()
| Access Rights |
|---|
| SC | DC |
|---|---|
[sap.com] FRAMEWORK
|
[sap.com] tc/ddic/ddicruntime
|
[sap.com] ENGINEAPI
|
[sap.com] tc/logging
|
[sap.com] ENGFACADE
|
[sap.com] tc/bl/logging/api
|
[sap.com] CORE-TOOLS
|
[sap.com] com.sap.engine.client.lib
|
[sap.com] BRMS-FACADE
|
[sap.com] tc/brms/facade
|
|
SAP NetWeaver 7.20 (SP01) Composition Environment | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||