UnityEngine.DebugLogHandler.Internal_Log C# (CSharp) 메소드

Internal_Log() 개인적인 메소드

private Internal_Log ( LogType level, string msg, [ obj ) : void
level LogType
msg string
obj [
리턴 void
        internal static extern void Internal_Log(LogType level, string msg, [Writable] UnityEngine.Object obj);
        [MethodImpl(MethodImplOptions.InternalCall), ThreadAndSerializationSafe]

Usage Example

 public void LogFormat(LogType logType, Object context, string format, params object[] args)
 {
     DebugLogHandler.Internal_Log(logType, string.Format(format, args), context);
 }