Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.
Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.
CerrarPor alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.
Cerrartag | Used to identify the source of a log message. It usually identifies the class where the log call occurs. |
message | String or object to be converted to string representation for display. |
context | Object to which the message applies. |
A variant of Logger.Log that logs an error message.
using UnityEngine; using System.Collections;
public class MyGameClass : MonoBehaviour { private static ILogger logger = Debug.logger; private static string kTAG = "MyGameTag"; private Transform transform;
void MyGameMethod() { if(transform == null) { logger.LogError(kTAG, "memberVariable must be set to point to a Transform.", transform);
Debug.logger.LogError(kTAG, "Failed! to set Transform", transform); } } }
Note that this pauses the editor when 'ErrorPause' is enabled.