- 프로젝트 만들기
- 개체 및 변수 참조
- 프로젝트 확장
Log.Info(category, message)
두 번째 인수에 전달된 정보 메시지를 생성하여 첫 번째 인수에 전달된 범주와 연결합니다.
static void Info(stringcategory, stringmessage);
인수
- category(string)
- 메시지 범주입니다.
- message(string)
- 생성할 메시지입니다.
예제
Log.Info("CustomCategory", "This is an info message");
의견을 작성 부탁드립니다.