Method LogWarning
LogWarning(string)
LogWarning can be used to write a log message.
선언
public static void LogWarning(string msg)
파라미터
타입 | 이름 | 설명 |
---|---|---|
string | msg | The msg to log |
참고
LogWarning works the same way as Debug.LogWarning. Addressables logs warnings and errors so by default this function will log.
예
Addressables.LogWarning("Operation took longer than 1 minute");