Skip to content

Commit

Permalink
XrdS3: remove debug printing in ScanDir function
Browse files Browse the repository at this point in the history
  • Loading branch information
apeters1971 committed Jun 24, 2024
1 parent e3ad479 commit 1c79d9c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/XrdS3/XrdS3Utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,6 @@ S3Utils::ScanDir(const std::filesystem::path& fullpath, const std::filesystem::p
std::map<std::string, BasicPath> sentries;
// the filler function
auto get_entry = [&sentries, &basepath](dirent *entry) {
std::cerr << "scandir: " << entry->d_name << " basepath: " << basepath.string() << " type: " << (int)(entry->d_type) << std::endl;
sentries[entry->d_name].name = entry->d_name;
sentries[entry->d_name].base = basepath.string();
sentries[entry->d_name].d_type = entry->d_type;
Expand Down

0 comments on commit 1c79d9c

Please sign in to comment.