Skip to content

Commit

Permalink
remove cout and comment
Browse files Browse the repository at this point in the history
  • Loading branch information
waugh2010 committed Feb 5, 2024
1 parent c6d46a3 commit 4029c9c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ set(HERMES_ENGINE_SRCS
#------------------------------------------------------------------------------
# Libraries
#------------------------------------------------------------------------------
#add_definitions(-DMeta_enabled)
#add_definitions(-Ddebug_mode)
add_library(hermes_engine ${HERMES_ENGINE_SRCS} ../include/coeus/MetadataSerializer.h)
add_dependencies(hermes_engine spdlog)
add_dependencies(hermes_engine coeus_mdm)
Expand Down
4 changes: 1 addition & 3 deletions tasks/coeus_mdm/src/coeus_mdm.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class Server : public TaskLib {
void Construct(ConstructTask *task, RunContext &rctx) {
task->Deserialize();
db = std::make_unique<SQLiteWrapper>(task->db_path_->str());
//std::cout << "MDM: mdm task constructor: " << task->db_path_->str() << std::endl;
task->SetModuleComplete();
}

Expand All @@ -44,9 +43,8 @@ class Server : public TaskLib {
db->InsertBlobLocation(db_op.step, db_op.rank, db_op.name, db_op.blobInfo);

} else if (db_op.type == OperationType::UpdateSteps) {
// std::cout << "MDM: Hermes update MDM: " << db->getName() << ", step:" << db_op.currentStep <<std::endl;
db->UpdateTotalSteps(db_op.uid, db_op.currentStep);
//std::cout << "MDM: Hermes update MDM done " << std::endl;

}

task->SetModuleComplete();
Expand Down

0 comments on commit 4029c9c

Please sign in to comment.