Stackframe and Elapsed Time Feb 7th, 2012 print realtimeSinceStartup and StackFrame[1] for logging string message = Time.realtimeSinceStartup.ToString() + " : [Elapsed]"; StackFrame CallStack = new StackFrame(1, true); string SourceFile = CallStack.GetFileName(); int SourceLine = CallStack.GetFileLineNumber(); message += "\n - File: " + SourceFile + " Line: " + SourceLine.ToString(); Debug.Debug(message);