Logger.Finer 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
| Finer(String) |
Log a FINER 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.
[Android.Runtime.Register("finer", "(Ljava/lang/String;)V", "GetFiner_Ljava_lang_String_Handler")]
public virtual void Finer (string? msg);
[<Android.Runtime.Register("finer", "(Ljava/lang/String;)V", "GetFiner_Ljava_lang_String_Handler")>]
abstract member Finer : string -> unit
override this.Finer : string -> unit
Parameters
- msg
- String
The string message (or a key in the message catalog)
- Attributes
Remarks
Java documentation for java.util.logging.Logger.finer(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.
Applies to
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.
[Android.Runtime.Register("finer", "(Ljava/util/function/Supplier;)V", "GetFiner_Ljava_util_function_Supplier_Handler", ApiSince=26)]
public virtual void Finer (Java.Util.Functions.ISupplier msgSupplier);
[<Android.Runtime.Register("finer", "(Ljava/util/function/Supplier;)V", "GetFiner_Ljava_util_function_Supplier_Handler", ApiSince=26)>]
abstract member Finer : Java.Util.Functions.ISupplier -> unit
override this.Finer : Java.Util.Functions.ISupplier -> unit
Parameters
- msgSupplier
- ISupplier
A function, which when called, produces the desired log message
- Attributes
Remarks
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.