File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
src/main/java/org/utplsql/cli Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -343,9 +343,20 @@ private List<Reporter> initReporters(DataSource dataSource) throws SQLException
343343 */
344344 private FileMapperOptions getFileMapperOptionsByParamListItem (List <String > pathParams , File baseDir )
345345 {
346+ logger .debug ("Getting FileMapperOptions - Params: " );
347+ pathParams .forEach (logger ::debug );
348+
346349 if (!pathParams .isEmpty ()) {
347350 String sourcePath = pathParams .get (0 );
351+
352+ logger .debug ("BaseDir: {}" , baseDir );
353+ logger .debug ("SourcePath: {}" , sourcePath );
354+
348355 List <String > files = new FileWalker ().getFileList (baseDir , sourcePath );
356+
357+ logger .debug ("Getting FileMapperOptions - Files: " );
358+ files .forEach (logger ::debug );
359+
349360 return getMapperOptions (pathParams , files );
350361 }
351362
You can’t perform that action at this time.
0 commit comments