Log.Wtf Metodo

Definizione

Overload

Nome Descrizione
Wtf(String, String, Object[])
Wtf(String, Throwable)

Che errore terribile: segnalare un'eccezione che non dovrebbe mai verificarsi.

Wtf(String, String)

Che errore terribile: segnalare una condizione che non dovrebbe mai accadere.

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

Wtf(String, String, Object[])

public static int Wtf(string tag, string format, params object[] args);
static member Wtf : string * string * obj[] -> int

Parametri

tag
String
format
String
args
Object[]

Valori restituiti

Commenti

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a

Wtf(String, Throwable)

Che errore terribile: segnalare un'eccezione che non dovrebbe mai verificarsi.

[Android.Runtime.Register("wtf", "(Ljava/lang/String;Ljava/lang/Throwable;)I", "")]
public static int Wtf(string? tag, Java.Lang.Throwable tr);
[<Android.Runtime.Register("wtf", "(Ljava/lang/String;Ljava/lang/Throwable;)I", "")>]
static member Wtf : string * Java.Lang.Throwable -> int

Parametri

tag
String

Usato per identificare l'origine di un messaggio di log.

tr
Throwable

Eccezione per la registrazione.

Valori restituiti

Valore positivo se il messaggio è loggable (vedere #isLoggable).

Attributi

Commenti

Che errore terribile: segnalare un'eccezione che non dovrebbe mai verificarsi. Simile a #wtf(String, String), con un'eccezione per registrare.

per android.util.Log.wtf(java.lang.String, java.lang.Throwable).

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a

Wtf(String, String)

Che errore terribile: segnalare una condizione che non dovrebbe mai accadere.

[Android.Runtime.Register("wtf", "(Ljava/lang/String;Ljava/lang/String;)I", "")]
public static int Wtf(string? tag, string? msg);
[<Android.Runtime.Register("wtf", "(Ljava/lang/String;Ljava/lang/String;)I", "")>]
static member Wtf : string * string -> int

Parametri

tag
String

Usato per identificare l'origine di un messaggio di log.

msg
String

Messaggio che si desidera registrare.

Valori restituiti

Valore positivo se il messaggio è loggable (vedere #isLoggable).

Attributi

Commenti

Che errore terribile: segnalare una condizione che non dovrebbe mai accadere. L'errore verrà sempre registrato a livello ASSERT con lo stack di chiamate. A seconda della configurazione di sistema, è possibile aggiungere un report a android.os.DropBoxManager e/o il processo può essere terminato immediatamente con una finestra di dialogo di errore.

per android.util.Log.wtf(java.lang.String, java.lang.String).

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a

Wtf(String, Throwable, String)

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

Parametri

tag
String
msg
String

Valori restituiti

Commenti

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a

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

public static int Wtf(string tag, Java.Lang.Throwable tr, string format, params object[] args);
static member Wtf : string * Java.Lang.Throwable * string * obj[] -> int

Parametri

tag
String
format
String
args
Object[]

Valori restituiti

Commenti

Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dalla e usati in base ai termini descritti in Creative License 2.5 Attribution License.

Si applica a