docs.unity.cn
    Show / Hide Table of Contents

    Method LogErrorFormat

    LogErrorFormat(String, Object[])

    Write an error level formatted log message.

    Declaration
    public static void LogErrorFormat(string format, params object[] args)
    Parameters
    Type Name Description
    String format

    The string with format tags.

    Object[] args

    The args used to fill in the format tags.

    Remarks

    LogErrorFormat can be used to write a formatted Error level log message. LogErrorFormat supports Composite Formatting and works the same way as LogErrorFormat. Addressables logs warnings and errors so by default this function will log.

    Examples
            public void UsingLogErrorFormatSample()
        {            
            Addressables.LogErrorFormat("{0:o}[{1}]Unloading bundle", DateTime.Now, this.GetType().Name);            
        }
    Back to top Copyright © 2023 Unity Technologies — Terms of use
    Generated by DocFX
    on Monday, June 26, 2023