Logger Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
A Logger object is used to log messages for a specific system or application component.
[Android.Runtime.Register("java/util/logging/Logger", DoNotGenerateAcw=true)]
public class Logger : Java.Lang.Object
[<Android.Runtime.Register("java/util/logging/Logger", DoNotGenerateAcw=true)>]
type Logger = class
inherit Object
- Inheritance
- Attributes
Remarks
A Logger object is used to log messages for a specific system or application component. Loggers are normally named, using a hierarchical dot-separated namespace. Logger names can be arbitrary strings, but they should normally be based on the package name or class name of the logged component, such as java.net or javax.swing. In addition it is possible to create "anonymous" Loggers that are not stored in the Logger namespace.
Logger objects may be obtained by calls on one of the getLogger factory methods. These will either create a new Logger or return a suitable existing Logger. It is important to note that the Logger returned by one of the getLogger
factory methods may be garbage collected at any time if a strong reference to the Logger is not kept.
Logging messages will be forwarded to registered Handler objects, which can forward the messages to a variety of destinations, including consoles, files, OS logs, etc.
Each Logger keeps track of a "parent" Logger, which is its nearest existing ancestor in the Logger namespace.
Each Logger has a "Level" associated with it. This reflects a minimum Level that this logger cares about. If a Logger's level is set to null
, then its effective level is inherited from its parent, which may in turn obtain it recursively from its parent, and so on up the tree.
The log level can be configured based on the properties from the logging configuration file, as described in the description of the LogManager class. However it may also be dynamically changed by calls on the Logger.setLevel method. If a logger's level is changed the change may also affect child loggers, since any child logger that has null
as its level will inherit its effective level from its parent.
On each logging call the Logger initially performs a cheap check of the request level (e.g., SEVERE or FINE) against the effective log level of the logger. If the request level is lower than the log level, the logging call returns immediately.
After passing this initial (cheap) test, the Logger will allocate a LogRecord to describe the logging message. It will then call a Filter (if present) to do a more detailed check on whether the record should be published. If that passes it will then publish the LogRecord to its output Handlers. By default, loggers also publish to their parent's Handlers, recursively up the tree.
Each Logger may have a ResourceBundle
associated with it. The ResourceBundle
may be specified by name, using the #getLogger(java.lang.String, java.lang.String)
factory method, or by value - using the #setResourceBundle(java.util.ResourceBundle) setResourceBundle
method. This bundle will be used for localizing logging messages. If a Logger does not have its own ResourceBundle
or resource bundle name, then it will inherit the ResourceBundle
or resource bundle name from its parent, recursively up the tree.
Most of the logger output methods take a "msg" argument. This msg argument may be either a raw value or a localization key. During formatting, if the logger has (or inherits) a localization ResourceBundle
and if the ResourceBundle
has a mapping for the msg string, then the msg string is replaced by the localized value. Otherwise the original msg string is used. Typically, formatters use java.text.MessageFormat style formatting to format parameters, so for example a format string "{0}{1}" would format two parameters as strings.
A set of methods alternatively take a "msgSupplier" instead of a "msg" argument. These methods take a Supplier
<String>
function which is invoked to construct the desired log message only when the message actually is to be logged based on the effective log level thus eliminating unnecessary message construction. For example, if the developer wants to log system health status for diagnosis, with the String-accepting version, the code would look like:
<code>
class DiagnosisMessages {
static String systemHealthStatus() {
// collect system health information
...
}
}
...
logger.log(Level.FINER, DiagnosisMessages.systemHealthStatus());
</code>
With the above code, the health status is collected unnecessarily even when the log level FINER is disabled. With the Supplier-accepting version as below, the status will only be collected when the log level FINER is enabled.
<code>
logger.log(Level.FINER, DiagnosisMessages::systemHealthStatus);
</code>
When looking for a ResourceBundle
, the logger will first look at whether a bundle was specified using #setResourceBundle(java.util.ResourceBundle) setResourceBundle
, and then only whether a resource bundle name was specified through the #getLogger(java.lang.String, java.lang.String) getLogger
factory method. If no ResourceBundle
or no resource bundle name is found, then it will use the nearest ResourceBundle
or resource bundle name inherited from its parent tree.<br> When a ResourceBundle
was inherited or specified through the #setResourceBundle(java.util.ResourceBundle) setResourceBundle
method, then that ResourceBundle
will be used. Otherwise if the logger only has or inherited a resource bundle name, then that resource bundle name will be mapped to a ResourceBundle
object, using the default Locale at the time of logging. <br id="ResourceBundleMapping">When mapping resource bundle names to ResourceBundle
objects, the logger will first try to use the Thread's java.lang.Thread#getContextClassLoader() context class loader to map the given resource bundle name to a ResourceBundle
. If the thread context class loader is null
, it will try the java.lang.ClassLoader#getSystemClassLoader() system class loader instead. If the ResourceBundle
is still not found, it will use the class loader of the first caller of the #getLogger(java.lang.String, java.lang.String) getLogger
factory method.
Formatting (including localization) is the responsibility of the output Handler, which will typically call a Formatter.
Note that formatting need not occur synchronously. It may be delayed until a LogRecord is actually written to an external sink.
The logging methods are grouped in five main categories: <ul> <li>
There are a set of "log" methods that take a log level, a message string, and optionally some parameters to the message string. <li>
There are a set of "logp" methods (for "log precise") that are like the "log" methods, but also take an explicit source class name and method name. <li>
There are a set of "logrb" method (for "log with resource bundle") that are like the "logp" method, but also take an explicit resource bundle object for use in localizing the log message. <li>
There are convenience methods for tracing method entries (the "entering" methods), method returns (the "exiting" methods) and throwing exceptions (the "throwing" methods). <li>
Finally, there are a set of convenience methods for use in the very simplest cases, when a developer simply wants to log a simple string at a given log level. These methods are named after the standard Level names ("severe", "warning", "info", etc.) and take a single argument, a message string. </ul>
For the methods that do not take an explicit source name and method name, the Logging framework will make a "best effort" to determine which class and method called into the logging method. However, it is important to realize that this automatically inferred information may only be approximate (or may even be quite wrong!). Virtual machines are allowed to do extensive optimizations when JITing and may entirely remove stack frames, making it impossible to reliably locate the calling class and method.
All methods on Logger are multi-thread safe.
<b>Subclassing Information:</b> Note that a LogManager class may provide its own implementation of named Loggers for any point in the namespace. Therefore, any subclasses of Logger (unless they are implemented in conjunction with a new LogManager class) should take care to obtain a Logger instance from the LogManager class and should delegate operations such as "isLoggable" and "log(LogRecord)" to that instance. Note that in order to intercept all logging output, subclasses need only override the log(LogRecord) method. All the other logging methods are implemented as calls on this log(LogRecord) method.
Added in 1.4.
Java documentation for java.util.logging.Logger
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Constructors
Logger(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
Logger(String, String) |
Protected method to construct a logger for a named subsystem. |
Fields
GlobalLoggerName |
GLOBAL_LOGGER_NAME is a name for the global logger. |
Properties
AnonymousLogger |
Create an anonymous Logger. |
Class |
Returns the runtime class of this |
Filter |
Get the current filter for this Logger. -or- Set a filter to control output on this Logger. |
Global |
Return global logger object with the name Logger. |
Handle |
The handle to the underlying Android instance. (Inherited from Object) |
JniIdentityHashCode | (Inherited from Object) |
JniPeerMembers | |
Level |
Get the log Level that has been specified for this Logger. -or- Set the log level specifying which message levels will be logged by this logger. |
Name |
Get the name for this logger. |
Parent |
Return the parent for this Logger. -or- Set the parent for this Logger. |
PeerReference | (Inherited from Object) |
ResourceBundle |
Retrieve the localization resource bundle for this logger. -or- Sets a resource bundle on this logger. |
ResourceBundleName |
Retrieve the localization resource bundle name for this logger. |
ThresholdClass |
This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
ThresholdType |
This API supports the Mono for Android infrastructure and is not intended to be used directly from your code. |
UseParentHandlers |
Discover whether or not this logger is sending its output to its parent logger. -or- Specify whether or not this logger should send its output to its parent Logger. |
Methods
AddHandler(Handler) |
Add a log Handler to receive logging messages. |
Clone() |
Creates and returns a copy of this object. (Inherited from Object) |
Config(ISupplier) |
Log a CONFIG message, which is only to be constructed if the logging level is such that the message will actually be logged. |
Config(String) |
Log a CONFIG message. |
Dispose() | (Inherited from Object) |
Dispose(Boolean) | (Inherited from Object) |
Entering(String, String, Object) |
Log a method entry, with one parameter. |
Entering(String, String, Object[]) |
Log a method entry, with an array of parameters. |
Entering(String, String) |
Log a method entry. |
Equals(Object) |
Indicates whether some other object is "equal to" this one. (Inherited from Object) |
Exiting(String, String, Object) |
Log a method return, with result object. |
Exiting(String, String) |
Log a method return. |
Fine(ISupplier) |
Log a FINE message, which is only to be constructed if the logging level is such that the message will actually be logged. |
Fine(String) |
Log a FINE message. |
Finer(ISupplier) |
Log a FINER message, which is only to be constructed if the logging level is such that the message will actually be logged. |
Finer(String) |
Log a FINER message. |
Finest(ISupplier) |
Log a FINEST message, which is only to be constructed if the logging level is such that the message will actually be logged. |
Finest(String) |
Log a FINEST message. |
GetAnonymousLogger(String) |
Create an anonymous Logger. |
GetHandlers() |
Get the Handlers associated with this logger. |
GetHashCode() |
Returns a hash code value for the object. (Inherited from Object) |
GetLogger(String, String) |
Find or create a logger for a named subsystem. |
GetLogger(String) |
Find or create a logger for a named subsystem. |
Info(ISupplier) |
Log a INFO message, which is only to be constructed if the logging level is such that the message will actually be logged. |
Info(String) |
Log an INFO message. |
IsLoggable(Level) |
Check if a message of the given level would actually be logged by this logger. |
JavaFinalize() |
Called by the garbage collector on an object when garbage collection determines that there are no more references to the object. (Inherited from Object) |
Log(Level, ISupplier) |
Log a message, which is only to be constructed if the logging level is such that the message will actually be logged. |
Log(Level, String, Object) |
Log a message, with one object parameter. |
Log(Level, String, Object[]) |
Log a message, with an array of object arguments. |
Log(Level, String, Throwable) |
Log a message, with associated Throwable information. |
Log(Level, String) |
Log a message, with no arguments. |
Log(Level, Throwable, ISupplier) |
Log a lazily constructed message, with associated Throwable information. |
Log(LogRecord) |
Log a LogRecord. |
Logp(Level, String, String, ISupplier) |
Log a lazily constructed message, specifying source class and method, with no arguments. |
Logp(Level, String, String, String, Object) |
Log a message, specifying source class and method, with a single object parameter to the log message. |
Logp(Level, String, String, String, Object[]) |
Log a message, specifying source class and method, with an array of object arguments. |
Logp(Level, String, String, String, Throwable) |
Log a message, specifying source class and method, with associated Throwable information. |
Logp(Level, String, String, String) |
Log a message, specifying source class and method, with no arguments. |
Logp(Level, String, String, Throwable, ISupplier) |
Log a lazily constructed message, specifying source class and method, with associated Throwable information. |
Logrb(Level, String, String, ResourceBundle, String, Object[]) |
Log a message, specifying source class, method, and resource bundle name with no arguments. |
Logrb(Level, String, String, ResourceBundle, String, Throwable) |
Log a message, specifying source class, method, and resource bundle, with associated Throwable information. |
Logrb(Level, String, String, String, String, Object) |
Log a message, specifying source class, method, and resource bundle name, with a single object parameter to the log message. |
Logrb(Level, String, String, String, String, Object[]) |
Log a message, specifying source class, method, and resource bundle name, with an array of object arguments. |
Logrb(Level, String, String, String, String, Throwable) |
Log a message, specifying source class, method, and resource bundle name, with associated Throwable information. |
Logrb(Level, String, String, String, String) |
Log a message, specifying source class, method, and resource bundle name with no arguments. |
Notify() |
Wakes up a single thread that is waiting on this object's monitor. (Inherited from Object) |
NotifyAll() |
Wakes up all threads that are waiting on this object's monitor. (Inherited from Object) |
RemoveHandler(Handler) |
Remove a log Handler. |
SetHandle(IntPtr, JniHandleOwnership) |
Sets the Handle property. (Inherited from Object) |
Severe(ISupplier) |
Log a SEVERE message, which is only to be constructed if the logging level is such that the message will actually be logged. |
Severe(String) |
Log a SEVERE message. |
Throwing(String, String, Throwable) |
Log throwing an exception. |
ToArray<T>() | (Inherited from Object) |
ToString() |
Returns a string representation of the object. (Inherited from Object) |
UnregisterFromRuntime() | (Inherited from Object) |
Wait() |
Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>. (Inherited from Object) |
Wait(Int64, Int32) |
Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed. (Inherited from Object) |
Wait(Int64) |
Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed. (Inherited from Object) |
Warning(ISupplier) |
Log a WARNING message, which is only to be constructed if the logging level is such that the message will actually be logged. |
Warning(String) |
Log a WARNING message. |
Explicit Interface Implementations
IJavaPeerable.Disposed() | (Inherited from Object) |
IJavaPeerable.DisposeUnlessReferenced() | (Inherited from Object) |
IJavaPeerable.Finalized() | (Inherited from Object) |
IJavaPeerable.JniManagedPeerState | (Inherited from Object) |
IJavaPeerable.SetJniIdentityHashCode(Int32) | (Inherited from Object) |
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) | (Inherited from Object) |
IJavaPeerable.SetPeerReference(JniObjectReference) | (Inherited from Object) |
Extension Methods
JavaCast<TResult>(IJavaObject) |
Performs an Android runtime-checked type conversion. |
JavaCast<TResult>(IJavaObject) | |
GetJniTypeName(IJavaPeerable) |