ILoggingMXBean.GetLoggerLevel(String) 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.
Gets the name of the log level associated with the specified logger.
[Android.Runtime.Register("getLoggerLevel", "(Ljava/lang/String;)Ljava/lang/String;", "GetGetLoggerLevel_Ljava_lang_String_Handler:Java.Util.Logging.ILoggingMXBeanInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public string? GetLoggerLevel (string? loggerName);
[<Android.Runtime.Register("getLoggerLevel", "(Ljava/lang/String;)Ljava/lang/String;", "GetGetLoggerLevel_Ljava_lang_String_Handler:Java.Util.Logging.ILoggingMXBeanInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member GetLoggerLevel : string -> string
Parameters
- loggerName
- String
The name of the Logger
to be retrieved.
Returns
The name of the log level of the specified logger; or
an empty string if the log level of the specified logger
is null
. If the specified logger does not
exist, null
is returned.
- Attributes
Remarks
Gets the name of the log level associated with the specified logger. If the specified logger does not exist, null
is returned. This method first finds the logger of the given name and then returns the name of the log level by calling: <blockquote> Logger#getLevel Logger.getLevel()
.Level#getName getName()
; </blockquote>
If the Level
of the specified logger is null
, which means that this logger's effective level is inherited from its parent, an empty string will be returned.
Java documentation for java.util.logging.LoggingMXBean.getLoggerLevel(java.lang.String)
.
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.