File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
csharp/runner/SnippetRunner Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -222,13 +222,6 @@ private static bool IsDirectory(string path)
222222 + Environment . OSVersion . Platform ) ;
223223 }
224224
225- Console . Error . WriteLine ( ) ;
226- Console . Error . WriteLine ( "---------------------------------" ) ;
227- Console . Error . WriteLine ( "DEFAULT SUPPORT PATH: " + defaultSupportPath ) ;
228- Console . Error . WriteLine ( "HOME SUPPORT PATH: " + homeSupport . FullName ) ;
229- Console . Error . WriteLine ( "---------------------------------" ) ;
230- Console . Error . WriteLine ( ) ;
231-
232225 // check for senzing system properties
233226 string ? installPath = Environment . GetEnvironmentVariable (
234227 "SENZING_DIR" ) ;
@@ -239,6 +232,14 @@ private static bool IsDirectory(string path)
239232 string ? resourcePath = Environment . GetEnvironmentVariable (
240233 "SENZING_RESOURCE_DIR" ) ;
241234
235+ Console . Error . WriteLine ( ) ;
236+ Console . Error . WriteLine ( "---------------------------------" ) ;
237+ Console . Error . WriteLine ( "EXPLICIT SUPPORT PATH: " + supportPath ) ;
238+ Console . Error . WriteLine ( "DEFAULT SUPPORT PATH: " + defaultSupportPath ) ;
239+ Console . Error . WriteLine ( "HOME SUPPORT PATH: " + homeSupport . FullName ) ;
240+ Console . Error . WriteLine ( "---------------------------------" ) ;
241+ Console . Error . WriteLine ( ) ;
242+
242243 // normalize empty strings as null
243244 if ( installPath != null && installPath . Trim ( ) . Length == 0 )
244245 {
You can’t perform that action at this time.
0 commit comments