diff --git a/MuonSpectrometer/MuonReconstruction/MuonTrackMakers/MuonTrackMakerTools/MuonTrackFinderTools/src/MuonTrackExtrapolationTool.cxx b/MuonSpectrometer/MuonReconstruction/MuonTrackMakers/MuonTrackMakerTools/MuonTrackFinderTools/src/MuonTrackExtrapolationTool.cxx
index 35663979b5d791cb377aed8edc5a6fca682d56b0..67b19d4be1da932e0be67e858c550fd47524eb3c 100644
--- a/MuonSpectrometer/MuonReconstruction/MuonTrackMakers/MuonTrackMakerTools/MuonTrackFinderTools/src/MuonTrackExtrapolationTool.cxx
+++ b/MuonSpectrometer/MuonReconstruction/MuonTrackMakers/MuonTrackMakerTools/MuonTrackFinderTools/src/MuonTrackExtrapolationTool.cxx
@@ -371,7 +371,6 @@ namespace Muon {
         }
 
         ATH_MSG_DEBUG(" perigee pars:        " << m_printer->print(*perigee));
-        ATH_MSG_DEBUG(" second perigee pars: " << m_printer->print(*secondPerigee));
 
         // flag whether the perigees were inserted
         bool perigeeWasInserted = false;
@@ -381,6 +380,7 @@ namespace Muon {
         bool perigeePointsToIP = perigee->position().dot(perDir) < 0. ;
         bool secondPerigeePointsToIP = false;
         if (secondPerigee) {
+	    ATH_MSG_DEBUG(" second perigee pars: " << m_printer->print(*secondPerigee));
             secondPerigeePointsToIP = secondPerigee->position().dot(secondPerigee->momentum()) < 0.;
             if (perigeePointsToIP == secondPerigeePointsToIP) {
                 ATH_MSG_DEBUG(" Track has two perigee's with the same orientation with respect to the IP ");