diff --git a/Database/APR/FileCatalog/src/IFileCatalog.cpp b/Database/APR/FileCatalog/src/IFileCatalog.cpp index 8dd6ae17b57ffc34e711a8ce451619415c6f4d35..3334819562f655f3a199abda9ba7687b271c5f3f 100644 --- a/Database/APR/FileCatalog/src/IFileCatalog.cpp +++ b/Database/APR/FileCatalog/src/IFileCatalog.cpp @@ -82,9 +82,7 @@ registerPFN( const std::string& pfn, const std::string& ftype, std::string& fid if( existsPFN(pfn) ) { throw pool::Exception(std::string("PFN '") + pfn + "' already registered", "registerPFN", "FileCatalog"); } - std::cout << "registerPFN: " << pfn << " GUID=" << fid << std::endl; if( fid.empty() ) fid = createFID(); - std::cout << "registerPFN: " << pfn << " GUID=" << fid << std::endl; ATH_MSG_DEBUG("Registering PFN=" << pfn << " of type=" << ftype << " GUID=" << fid); _fc->registerPFN(fid, pfn, ftype); }