GameFramework.LogSystem.Error C# (CSharp) Method

Error() public static method

public static Error ( string format ) : void
format string
return void
        public static void Error(string format, params object[] args)
        {
            string str = string.Format("[Error]:" + format, args);
              Output(Log_Type.LT_Error, str);
        }