diff --git a/src/wrench/action/FileWriteAction.cpp b/src/wrench/action/FileWriteAction.cpp index bcf9bf8d59..8aa749746f 100755 --- a/src/wrench/action/FileWriteAction.cpp +++ b/src/wrench/action/FileWriteAction.cpp @@ -59,7 +59,6 @@ namespace wrench { // Thread overhead Simulation::sleep(action_executor->getThreadCreationOverhead()); // Fix location if scratch - WRENCH_INFO("FILE WRITE: %s", this->file_location->getFile()->getID().c_str()); if (this->file_location->isScratch()) { auto cs = std::dynamic_pointer_cast(action_executor->getActionExecutionService()->getParentService()); this->file_location = FileLocation::LOCATION(cs->getScratch(), cs->getScratch()->getBaseRootPath() + this->getJob()->getName(), this->file_location->getFile()); diff --git a/src/wrench/services/compute/bare_metal/BareMetalComputeService.cpp b/src/wrench/services/compute/bare_metal/BareMetalComputeService.cpp index a139871354..99d8beb4fc 100755 --- a/src/wrench/services/compute/bare_metal/BareMetalComputeService.cpp +++ b/src/wrench/services/compute/bare_metal/BareMetalComputeService.cpp @@ -46,7 +46,6 @@ namespace wrench { */ void BareMetalComputeService::cleanup(bool has_returned_from_main, int return_value) { // Do the default behavior (which will throw as this is not a fault-tolerant service) - std::cerr << "IN BARED METAL COMPUTE SERVICE CLEANUP\n"; Service::cleanup(has_returned_from_main, return_value); this->action_execution_service = nullptr;// to avoid leak due to circular refs diff --git a/src/wrench/services/compute/batch/batch_schedulers/homegrown/conservative_bf/ConservativeBackfillingBatchScheduler.cpp b/src/wrench/services/compute/batch/batch_schedulers/homegrown/conservative_bf/ConservativeBackfillingBatchScheduler.cpp index 8c1fb30309..a813d5475d 100644 --- a/src/wrench/services/compute/batch/batch_schedulers/homegrown/conservative_bf/ConservativeBackfillingBatchScheduler.cpp +++ b/src/wrench/services/compute/batch/batch_schedulers/homegrown/conservative_bf/ConservativeBackfillingBatchScheduler.cpp @@ -116,7 +116,7 @@ namespace wrench { WRENCH_INFO("Compacting schedule..."); #ifdef PRINT_SCHEDULE - WRENCH_INFO("BEFORE COMPACTING"); +// WRENCH_INFO("BEFORE COMPACTING"); this->schedule->print(); #endif diff --git a/src/wrench/simgrid_S4U_util/S4U_CommPort.cpp b/src/wrench/simgrid_S4U_util/S4U_CommPort.cpp index 1b461842e6..fbc87540ef 100755 --- a/src/wrench/simgrid_S4U_util/S4U_CommPort.cpp +++ b/src/wrench/simgrid_S4U_util/S4U_CommPort.cpp @@ -53,7 +53,7 @@ namespace wrench { * @brief Reset all communication */ void S4U_CommPort::reset() { - std::cerr << "RESETTING COMMPORT " << this->name << "\n"; +// std::cerr << "RESETTING COMMPORT " << this->name << "\n"; this->mq_comm = nullptr; this->mq_comm_posted = false; this->mb_comm = nullptr; @@ -237,7 +237,6 @@ namespace wrench { this->s4u_mq->put(msg); } catch (simgrid::TimeoutException &e) { // Can happen if the other side is doing a timeout.... I think - std::cerr << "THROWING HERE\n"; throw ExecutionException(std::make_shared( NetworkError::SENDING, NetworkError::TIMEOUT, this->s4u_mb->get_name(), msg->getName())); } catch (simgrid::Exception &e) {