Method Log
Log(string)
Log can be used to write a Debug level log message.
선언
[Conditional("ADDRESSABLES_LOG_ALL")]
public static void Log(string msg)
파라미터
타입 | 이름 | 설명 |
---|---|---|
string | msg | The msg to log |
참고
Log works the same as Debug.Log. Addressables only logs warnings and errors so by default this function does not log anything.
예
Addressables.Log("Unloading bundle");
Addressables.Log("<color=red>Unloading bundle</color> ");