UnityEngine.DebugLogHandler.Internal_Log C# (CSharp) Method

Internal_Log() private method

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

Usage Example

コード例 #1
0
 public void LogFormat(LogType logType, Object context, string format, params object[] args)
 {
     DebugLogHandler.Internal_Log(logType, string.Format(format, args), context);
 }