Method LogWarning
LogWarning(string)
LogWarning can be used to write a log message.
Declaration
public static void LogWarning(string msg)
Parameters
Type | Name | Description |
---|---|---|
string | msg | The msg to log |
Remarks
LogWarning works the same way as Debug.LogWarning. Addressables logs warnings and errors so by default this function will log.
Examples
Addressables.LogWarning("Operation took longer than 1 minute");