@@ -413,28 +413,21 @@ bool mpm::MPMBase<Tdim>::checkpoint_resume() {
413413 io_->output_file (attribute, extension, uuid_, step_, this ->nsteps_ )
414414 .string ();
415415
416- console_->info (" {} {} {}" , mpi_rank, __FILE__, __LINE__);
417416 // Load particle information from file
418417 mesh_->read_particles_hdf5 (phase, particles_file);
419- console_->info (" {} {} {}" , mpi_rank, __FILE__, __LINE__);
420418
421419 // Clear all particle ids
422420 mesh_->iterate_over_cells (
423421 std::bind (&mpm::Cell<Tdim>::clear_particle_ids, std::placeholders::_1));
424422
425- console_->info (" {} {} {}" , mpi_rank, __FILE__, __LINE__);
426423 // Locate particles
427424 auto unlocatable_particles = mesh_->locate_particles_mesh ();
428- console_->info (" {} {} {}" , mpi_rank, __FILE__, __LINE__);
429425
430426 if (!unlocatable_particles.empty ())
431427 throw std::runtime_error (" Particle outside the mesh domain" );
432- console_->info (" {} {} {}" , mpi_rank, __FILE__, __LINE__);
433428
434429 // Increament step
435430 ++this ->step_ ;
436-
437- console_->info (" {} {} {}" , mpi_rank, __FILE__, __LINE__);
438431 console_->info (" Checkpoint resume at step {} of {}" , this ->step_ ,
439432 this ->nsteps_ );
440433
0 commit comments