AssemblyCSharp.PSDebug.LogError C# (CSharp) Method

LogError() public static method

public static LogError ( string message ) : void
message string
return void
        public static void LogError(string message, params object[] args)
        {
            var msg = StringUtils.SafeFormat(message, args);
            UnityEngine.Debug.LogError(msg);
        }