InstallContext.LogMessage(String) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
콘솔과 설치 로그 파일에 메시지를 씁니다.
public:
void LogMessage(System::String ^ message);
public void LogMessage (string message);
member this.LogMessage : string -> unit
Public Sub LogMessage (message As String)
매개 변수
- message
- String
쓸 메시지입니다.
예제
이 예제는 클래스 개요의 일부 InstallContext 클래스입니다.
사용 하 여는 IsParameterTrue 있는지 확인 하는 방법은 LogtoConsole
매개 변수가 설정 되어 있습니다. 경우 yes
, 다음을 사용할지는 LogMessage 설치 로그 파일 및 콘솔에 상태 메시지를 작성 하는 방법입니다.
// Check whether the "LogtoConsole" parameter has been set.
if ( myInstallContext->IsParameterTrue( "LogtoConsole" ) )
{
// Display the message to the console and add it to the logfile.
myInstallContext->LogMessage( "The 'Install' method has been called" );
}
// Check whether the "LogtoConsole" parameter has been set.
if( myInstallContext.IsParameterTrue( "LogtoConsole" ) == true )
{
// Display the message to the console and add it to the logfile.
myInstallContext.LogMessage( "The 'Install' method has been called" );
}
' Check wether the "LogtoConsole" parameter has been set.
If myInstallContext.IsParameterTrue("LogtoConsole") = True Then
' Display the message to the console and add it to the logfile.
myInstallContext.LogMessage("The 'Install' method has been called")
End If
설명
설치 관리자 로그 파일에 진행률 또는 기타 상태 정보를 작성 하려면이 메서드를 호출할 수 있습니다. 설치 관리자 메시지 상자를 표시 해야 또는 호출 하는 것 외에도 쿼리를 만들 사용자 인터페이스를 표시 해야 함을 지정 하는 명령줄 매개 변수를는 LogMessage 메서드. 로그 파일에 기록 된 텍스트의 설치를 실행 하려면 InstallUtil.exe를 사용 하지 않으면 사용자가 표시 되지 것입니다 하 고 "/ LogToConsole = true" 명령줄에 지정 됩니다.
적용 대상
추가 정보
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET