Method LogError
LogError(string)
Write an error level log message.
Declaration
public static void LogError(string msg)
Parameters
Type | Name | Description |
---|---|---|
string | msg | The msg to log |
Remarks
LogError can be used to write an Error message. LogError works the same way as LogError(object). Addressables logs warnings and errors so by default this function will log.
Examples
public void UsingLogErrorSample()
{
Addressables.LogError("Unable to load asset bundle");
}