LogProcessStartInfo() public method

public LogProcessStartInfo ( ) : void
return void
Ejemplo n.º 1
0
 internal static bool StartProgramChecked(Program p)
 {
     bool flag;
     if (EmccArguments.debugEnvironmentAndInvocations)
     {
         Debug.Log(p.GetProcessStartInfo().Arguments);
     }
     using (p)
     {
         p.LogProcessStartInfo();
         try
         {
             p.Start();
         }
         catch
         {
             throw new Exception("Could not start ");
         }
         p.WaitForExit();
         if (p.ExitCode == 0)
         {
             flag = true;
         }
         else
         {
             Debug.LogError("Failed running " + p.GetProcessStartInfo().FileName + " " + p.GetProcessStartInfo().Arguments + "\n\n" + p.GetAllOutput());
             throw new Exception("Failed building WebGL Player.");
         }
     }
     return flag;
 }
Ejemplo n.º 2
0
 public void LogProcessStartInfo()
 {
     if (this._process != null)
     {
         Program.LogProcessStartInfo(this._process.StartInfo);
     }
     else
     {
         Console.WriteLine("Failed to retrieve process startInfo");
     }
 }