Skip to content

Commit

Permalink
Logging.
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Jan 4, 2025
1 parent 1bbdec2 commit ccf43c9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ public Set<TransferItem> find(final CommandLine input, final TerminalAction acti
if(StringUtils.containsAny(path, '*', '?')) {
final Local directory = LocalFactory.get(FilenameUtils.getFullPath(path));
if(directory.isDirectory()) {
final Set<TransferItem> items = new HashSet<TransferItem>();
log.debug("Resolve files in {} matching {}", directory, path);
final Set<TransferItem> items = new HashSet<>();
for(Local file : directory.list(new NullFilter<String>() {
@Override
public boolean accept(final String file) {
Expand Down

0 comments on commit ccf43c9

Please sign in to comment.