diff --git a/src/scheme/FluxingAdvectionSolver.cpp b/src/scheme/FluxingAdvectionSolver.cpp
index e6d79c1981300a661a21c499388e37884f0c32db..6d54194f129cd0f4ddf53c4d6bbdfafe39b3c049 100644
--- a/src/scheme/FluxingAdvectionSolver.cpp
+++ b/src/scheme/FluxingAdvectionSolver.cpp
@@ -98,8 +98,8 @@ FluxingAdvectionSolver<2>::computeFluxVolume() const
   if (m_new_mesh->shared_connectivity() != m_old_mesh->shared_connectivity()) {
     throw NormalError("Old and new meshes must share the same connectivity");
   }
-  std::cout << " CARRE "
-            << "\n";
+  // std::cout << " CARRE "
+  // << "\n";
   // MeshDataType& old_mesh_data    = MeshDataManager::instance().getMeshData(*m_old_mesh);
   // MeshDataType& new_mesh_data    = MeshDataManager::instance().getMeshData(*m_new_mesh);
   const auto face_to_node_matrix = m_old_mesh->connectivity().faceToNodeMatrix();
@@ -149,7 +149,7 @@ calculateRemapCycles(const std::shared_ptr<const MeshType>& old_mesh,
           total_negative_flux[cell_id] += flux;
         }
       }
-      std::cout << " cell_id " << cell_id << " total_negative_flux " << total_negative_flux[cell_id] << "\n";
+      // std::cout << " cell_id " << cell_id << " total_negative_flux " << total_negative_flux[cell_id] << "\n";
     });
   MeshData<Dimension>& mesh_data   = MeshDataManager::instance().getMeshData(*old_mesh);
   const CellValue<const double> Vj = mesh_data.Vj();