Log.Error Method

Definition

Overloads

Error(String, String)

Send an #ERROR log message.

Error(String, Throwable, String)
Error(String, String, Object[])
Error(String, Throwable, String, Object[])

Error(String, String)

Send an #ERROR log message.

[Android.Runtime.Register("e", "(Ljava/lang/String;Ljava/lang/String;)I", "")]
public static int Error (string? tag, string msg);
[<Android.Runtime.Register("e", "(Ljava/lang/String;Ljava/lang/String;)I", "")>]
static member Error : 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 an #ERROR log message.

Java documentation for android.util.Log.e(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

Error(String, Throwable, String)

public static int Error (string tag, Java.Lang.Throwable tr, string msg);
static member Error : string * Java.Lang.Throwable * string -> int

Parameters

tag
String
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

Error(String, String, Object[])

public static int Error (string tag, string format, params object[] args);
static member Error : 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

Error(String, Throwable, String, Object[])

public static int Error (string tag, Java.Lang.Throwable tr, string format, params object[] args);
static member Error : string * Java.Lang.Throwable * 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