ILog.Debug 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.
Overloads
| Name | Description |
|---|---|
| Debug(Object) |
Logs a message at the debug level. |
| Debug(Object, Throwable) |
Logs a message and its cause at the debug level. |
Debug(Object)
Logs a message at the debug level.
[Android.Runtime.Register("debug", "(Ljava/lang/Object;)V", "GetDebug_Ljava_lang_Object_Handler:Org.Apache.Commons.Logging.ILogInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void Debug(Java.Lang.Object? p0);
[<Android.Runtime.Register("debug", "(Ljava/lang/Object;)V", "GetDebug_Ljava_lang_Object_Handler:Org.Apache.Commons.Logging.ILogInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Debug : Java.Lang.Object -> unit
Parameters
- p0
- Object
The message to log.
- Attributes
Applies to
Debug(Object, Throwable)
Logs a message and its cause at the debug level.
[Android.Runtime.Register("debug", "(Ljava/lang/Object;Ljava/lang/Throwable;)V", "GetDebug_Ljava_lang_Object_Ljava_lang_Throwable_Handler:Org.Apache.Commons.Logging.ILogInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")]
public void Debug(Java.Lang.Object? p0, Java.Lang.Throwable? p1);
[<Android.Runtime.Register("debug", "(Ljava/lang/Object;Ljava/lang/Throwable;)V", "GetDebug_Ljava_lang_Object_Ljava_lang_Throwable_Handler:Org.Apache.Commons.Logging.ILogInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null")>]
abstract member Debug : Java.Lang.Object * Java.Lang.Throwable -> unit
Parameters
- p0
- Object
The message to log.
- p1
- Throwable
The cause to log.
- Attributes