다음을 통해 공유


InstallContext.LogMessage(String) 메서드

정의

콘솔과 설치 로그 파일에 메시지를 씁니다.

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" 명령줄에 지정 됩니다.

적용 대상

추가 정보