UnityEditor.SimpleProfiler.PrintTimes C# (CSharp) Method

PrintTimes() private method

private PrintTimes ( ) : void
return void
        public static void PrintTimes()
        {
            string message = "Measured execution times:\n----------------------------\n";
            foreach (KeyValuePair<string, float> pair in m_Timers)
            {
                message = message + string.Format("{0,6:0.0} ms: {1} in {2} calls\n", pair.Value * 1000f, pair.Key, m_Calls[pair.Key]);
            }
            Debug.Log(message);
            m_Names.Clear();
            m_StartTime.Clear();
            m_Timers.Clear();
            m_Calls.Clear();
        }
    }