AssemblyCSharp.PSDebug.LogError C# (CSharp) 메소드

LogError() 공개 정적인 메소드

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