WikiFunctions.Profiler.Profile C# (CSharp) Method

Profile() public method

Outputs time difference between previous time mark and now to the profiling log
public Profile ( string message ) : void
message string description of the time interval
return void
        public void Profile(string message)
        {
            AddLog("\t" + message + "\t" + Watch.ElapsedMilliseconds);
            Watch = Stopwatch.StartNew();
        }