MemoryHandler.PushLevel Property
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.
Get the pushLevel
. -or- Set the pushLevel
.
public virtual Java.Util.Logging.Level? PushLevel { [Android.Runtime.Register("getPushLevel", "()Ljava/util/logging/Level;", "GetGetPushLevelHandler")] get; [Android.Runtime.Register("setPushLevel", "(Ljava/util/logging/Level;)V", "GetSetPushLevel_Ljava_util_logging_Level_Handler")] set; }
[<get: Android.Runtime.Register("getPushLevel", "()Ljava/util/logging/Level;", "GetGetPushLevelHandler")>]
[<set: Android.Runtime.Register("setPushLevel", "(Ljava/util/logging/Level;)V", "GetSetPushLevel_Ljava_util_logging_Level_Handler")>]
member this.PushLevel : Java.Util.Logging.Level with get, set
Property Value
the value of the pushLevel
- Attributes
Remarks
Property getter documentation:
Get the pushLevel
.
Java documentation for java.util.logging.MemoryHandler.getPushLevel()
.
Property setter documentation:
Set the pushLevel
. After a LogRecord
is copied into our internal buffer, if its level is greater than or equal to the pushLevel
, then push
will be called.
Java documentation for java.util.logging.MemoryHandler.setPushLevel(java.util.logging.Level)
.
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.