Logger.AddHandler(Handler) Method
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.
Add a log Handler to receive logging messages.
[Android.Runtime.Register("addHandler", "(Ljava/util/logging/Handler;)V", "GetAddHandler_Ljava_util_logging_Handler_Handler")]
public virtual void AddHandler (Java.Util.Logging.Handler handler);
[<Android.Runtime.Register("addHandler", "(Ljava/util/logging/Handler;)V", "GetAddHandler_Ljava_util_logging_Handler_Handler")>]
abstract member AddHandler : Java.Util.Logging.Handler -> unit
override this.AddHandler : Java.Util.Logging.Handler -> unit
Parameters
- handler
- Handler
a logging Handler
- Attributes
Remarks
Add a log Handler to receive logging messages.
By default, Loggers also send their output to their parent logger. Typically the root Logger is configured with a set of Handlers that essentially act as default handlers for all loggers.
Java documentation for java.util.logging.Logger.addHandler(java.util.logging.Handler)
.
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.