본문 바로가기
개발언어/C#

[C#] 오류난 함수 출력, 로그에 기록

by 창용이랑 2022. 12. 23.
728x90

실행중 오류날시 로그에 기록

 

try{

}
catch(Exception ex)
{
    //오류난 함출 출력
    Log("Function Name ============>" + System.Reflection.MethodBase.GetCurrentMethod().Name + " : " + ex.Message);
}

//로그기록
public void Log(string strMsg)
{    
    Clog.Log_File(strMsg);
}