From 9bb8b02093a1fa08e47a033ffcbb26d2b2ef40f3 Mon Sep 17 00:00:00 2001
From: Marcin Nowak <Marcin.Nowak@cern.ch>
Date: Tue, 27 Feb 2018 14:50:27 +0100
Subject: [PATCH] Remove forgotten couts

Former-commit-id: 9d2c46cf94c0dbe12d45da9d6b605d353c2f3f3e
---
 Database/APR/FileCatalog/src/IFileCatalog.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/Database/APR/FileCatalog/src/IFileCatalog.cpp b/Database/APR/FileCatalog/src/IFileCatalog.cpp
index 8dd6ae17b57..3334819562f 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);
 }
-- 
GitLab