diff --git a/Tf/PatAlgorithms/src/PatSeedFit.cpp b/Tf/PatAlgorithms/src/PatSeedFit.cpp
index c3d98b158ba448ae0f9b972012577113ed73be05..eabc23beb178d7609aadc3f22c57f0c2e9dccb19 100644
--- a/Tf/PatAlgorithms/src/PatSeedFit.cpp
+++ b/Tf/PatAlgorithms/src/PatSeedFit.cpp
@@ -514,11 +514,9 @@ StatusCode PatSeedFit::getOTTimes( const std::vector<LHCb::LHCbID> lhcbIDs,
       ++niter;
     } while (hits_removed && ids.size() > 4 && niter < 3);
   } catch (const SeedFitExcept& e) {
-    Warning(e.what()).ignore();
-    return StatusCode::FAILURE;
+    return Warning(e.what(), StatusCode::FAILURE);
   } catch (const std::length_error& e) {
-    Warning(e.what()).ignore();
-    return StatusCode::FAILURE;
+    return Warning(e.what(), StatusCode::FAILURE);
   }
   return StatusCode::SUCCESS ;
 }
@@ -586,11 +584,9 @@ StatusCode PatSeedFit::fitSeed( const std::vector<LHCb::LHCbID> lhcbIDs,
           states->push_back( temp );
       }
   } catch (const SeedFitExcept& e) {
-      Warning(e.what()).ignore();
-      return StatusCode::FAILURE;
+      return Warning(e.what(),StatusCode::FAILURE);
   } catch (const std::length_error& e) {
-      Warning(e.what()).ignore();
-      return StatusCode::FAILURE;
+      return Warning(e.what(), StatusCode::FAILURE);
   }
 
   return StatusCode::SUCCESS ;