diff --git a/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv.cxx b/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv.cxx
index 1cc5d37e45d2de4bb207637b200439552e653ec6..6cdf413ffe31adfe338da8323ccc1035af5ca5fc 100755
--- a/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv.cxx
+++ b/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv.cxx
@@ -15,21 +15,21 @@ PixelRDOElemLinkVecCnv::PixelRDOElemLinkVecCnv(ISvcLocator* svcLoc) :
 
 
 PixelRDOElemLinkVecPERS* PixelRDOElemLinkVecCnv::createPersistent(PixelRDOElemLinkVec* trans) {
-    MsgStream log(messageService(), "PixelRDOElemLinkVecCnv");
-    log << MSG::DEBUG << "Writing PixelRDOElemLinkVec_p1" << endreq;
+    MsgStream log(msgSvc(), "PixelRDOElemLinkVecCnv");
+    log << MSG::DEBUG << "Writing PixelRDOElemLinkVec_p1" << endmsg;
     PixelRDOElemLinkVecPERS* pers=new PixelRDOElemLinkVecPERS();
     m_converter_p1.transToPers(trans,pers,log); 
     return pers;
 }
     
 PixelRDOElemLinkVec* PixelRDOElemLinkVecCnv::createTransient() {
-    MsgStream log(messageService(), "PixelRDOElemLinkVecCnv" );
+    MsgStream log(msgSvc(), "PixelRDOElemLinkVecCnv" );
     // Search for persistent version to convert - last version first
     PixelRDOElemLinkVec* trans = 0;
     if (compareClassGuid(m_guid1)) {
         trans=new PixelRDOElemLinkVec;
         log << MSG::DEBUG << "Read PixelRDOElemLinkVec_p1. GUID=" 
-            << m_classID.toString() << endreq;
+            << m_classID.toString() << endmsg;
         PixelRDOElemLinkVec_p1* pers=poolReadObject<PixelRDOElemLinkVec_p1>();
         m_converter_p1.persToTrans(pers,trans,log);
         delete pers;
@@ -37,7 +37,7 @@ PixelRDOElemLinkVec* PixelRDOElemLinkVecCnv::createTransient() {
     }
     else {
         log << MSG::ERROR << "Unsupported persistent version of PixelRDOElemLinkVec GUID=" 
-            << m_classID.toString() << endreq;
+            << m_classID.toString() << endmsg;
         throw std::runtime_error("Unsupported persistent version of PixelRDOElemLinkVec");
     }
     return trans;
diff --git a/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv_p1.cxx b/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv_p1.cxx
index 5ff8bce572a6f1f4d9a82bb7315a016768afa15a..84314989264d92e3703100a5e6b317b963e6c6e7 100755
--- a/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv_p1.cxx
+++ b/AtlasTest/DatabaseTest/AthenaPoolTestAthenaPool/src/PixelRDOElemLinkVecCnv_p1.cxx
@@ -18,7 +18,7 @@ void PixelRDOElemLinkVecCnv_p1::persToTrans(const PixelRDOElemLinkVec_p1* pers,
 //         log << MSG::ERROR
 //             << "persToTrans: index " <<   pers->m_pixelRDOs[i].m_contIndex << " " 
 //             << pers->m_pixelRDOs[i].m_elementIndex 
-//             << endreq;
+//             << endmsg;
       m_elementLinkCnv.persToTrans(&pers->m_pixelRDOs[i], &trans->pixelRDOs()[i], log);
     }
 }
@@ -36,7 +36,7 @@ void PixelRDOElemLinkVecCnv_p1::transToPers(const PixelRDOElemLinkVec* trans,
 //         log << MSG::ERROR
 //             << "transToPers: index " <<   MSG::hex 
 //             << trans->m_pixelRDOs[i].index() << " " << MSG::dec
-//             << endreq;
+//             << endmsg;
       m_elementLinkCnv.transToPers( &trans->pixelRDOs()[i], &pers->m_pixelRDOs[i], log);
     }
 }