아래와 같이 로그를 찍으면 현재 클래스명과 함수명을 출력해준다. 

디버깅 용도로 좋다.

using System.Reflection;

void Start()
{
	Debug.Log(this.GetType().Name + ": " + MethodBase.GetCurrentMethod().Name);
}

+ Recent posts