Log.Warn 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
Warn(String, Throwable, String, Object[]) | |
Warn(String, Throwable, String) | |
Warn(String, String, Object[]) | |
Warn(String, Throwable) |
Send a |
Warn(String, String) |
Send a |
Warn(String, Throwable, String, Object[])
public static int Warn (string tag, Java.Lang.Throwable tr, string format, params object[] args);
static member Warn : string * Java.Lang.Throwable * string * obj[] -> int
Parameters
- tag
- String
- tr
- Throwable
- format
- String
- args
- Object[]
Returns
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.
Applies to
Warn(String, Throwable, String)
public static int Warn (string tag, Java.Lang.Throwable tr, string msg);
static member Warn : string * Java.Lang.Throwable * string -> int
Parameters
- tag
- String
- tr
- Throwable
- msg
- String
Returns
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.
Applies to
Warn(String, String, Object[])
public static int Warn (string tag, string format, params object[] args);
static member Warn : string * string * obj[] -> int
Parameters
- tag
- String
- format
- String
- args
- Object[]
Returns
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.
Applies to
Warn(String, Throwable)
Send a #WARN
log message.
[Android.Runtime.Register("w", "(Ljava/lang/String;Ljava/lang/Throwable;)I", "")]
public static int Warn (string? tag, Java.Lang.Throwable? tr);
[<Android.Runtime.Register("w", "(Ljava/lang/String;Ljava/lang/Throwable;)I", "")>]
static member Warn : string * Java.Lang.Throwable -> int
Parameters
- tag
- String
Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.
- tr
- Throwable
Returns
- Attributes
Remarks
Java documentation for android.util.Log.w(java.lang.String, 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
Warn(String, String)
Send a #WARN
log message.
[Android.Runtime.Register("w", "(Ljava/lang/String;Ljava/lang/String;)I", "")]
public static int Warn (string? tag, string msg);
[<Android.Runtime.Register("w", "(Ljava/lang/String;Ljava/lang/String;)I", "")>]
static member Warn : string * string -> int
Parameters
- tag
- String
Used to identify the source of a log message. It usually identifies the class or activity where the log call occurs.
- msg
- String
The message you would like logged.
Returns
- Attributes
Remarks
Send a #WARN
log message.
Java documentation for android.util.Log.w(java.lang.String, 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.