From 1c79d9ce1bcf21d43034dcea8c9ddc4c0aab7eda Mon Sep 17 00:00:00 2001 From: Andreas-Joachim Peters Date: Mon, 24 Jun 2024 11:06:52 +0200 Subject: [PATCH] XrdS3: remove debug printing in ScanDir function --- src/XrdS3/XrdS3Utils.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/XrdS3/XrdS3Utils.cc b/src/XrdS3/XrdS3Utils.cc index 552dfdb16a7..567ac620de0 100644 --- a/src/XrdS3/XrdS3Utils.cc +++ b/src/XrdS3/XrdS3Utils.cc @@ -442,7 +442,6 @@ S3Utils::ScanDir(const std::filesystem::path& fullpath, const std::filesystem::p std::map 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;