@@ -59,6 +59,10 @@ private void CreateBatchFile()
5959 sbBatchFile . Append ( takeFileName ) ;
6060 sbBatchFile . Append ( "\n " ) ;
6161 File . WriteAllText ( BatchFile , sbBatchFile . ToString ( ) ) ;
62+ Console . WriteLine ( "\n batch file =" ) ;
63+ Console . WriteLine ( "=================================================" ) ;
64+ Console . Write ( sbBatchFile . ToString ( ) ) ;
65+ Console . WriteLine ( "=================================================" ) ;
6266 }
6367
6468 private string GetPcPatr64ExePath ( )
@@ -89,6 +93,10 @@ public void Invoke()
8993 process . WaitForExit ( ) ;
9094 Console . WriteLine ( "\t After WaitForExit" ) ;
9195 string error = process . StandardError . ReadToEnd ( ) ;
96+ Console . WriteLine ( "\n StdErr=" ) ;
97+ Console . WriteLine ( "=================================================" ) ;
98+ Console . Write ( error ) ;
99+ Console . WriteLine ( "=================================================" ) ;
92100 if ( error . Contains ( "ERROR " ) )
93101 {
94102 Console . WriteLine ( "\t Failure" ) ;
@@ -147,6 +155,10 @@ private void CreateTakeFile()
147155 sbTake . Append ( "exit\n " ) ;
148156 File . WriteAllText ( takeFile , sbTake . ToString ( ) ) ;
149157 AndFile = Path . Combine ( Path . GetTempPath ( ) , "Invoker.and" ) ;
158+ Console . WriteLine ( "\n take file =" ) ;
159+ Console . WriteLine ( "=================================================" ) ;
160+ Console . Write ( sbTake . ToString ( ) ) ;
161+ Console . WriteLine ( "=================================================" ) ;
150162 }
151163
152164 private void HandleRootGloss ( StringBuilder sbTake )
0 commit comments