Skip to content

Commit 2238f7d

Browse files
committed
Reduce debug output
1 parent 1bcd012 commit 2238f7d

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

Libs/Groom/Groom.cpp

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1138,17 +1138,13 @@ Mesh Groom::get_mesh(int subject, int domain, bool transformed, MeshSource sourc
11381138
}
11391139
path = subjects[subject]->get_original_filenames()[domain];
11401140
domain_type = project_->get_original_domain_types()[domain];
1141-
SW_DEBUG("Getting original mesh for subject {}, domain {}: {}", subject, domain, path);
1142-
SW_DEBUG("Domain type: {}", static_cast<int>(domain_type));
11431141
} else {
11441142
if (domain >= subjects[subject]->get_groomed_filenames().size()) {
11451143
throw std::out_of_range("domain index out of range");
11461144
}
11471145
path = subjects[subject]->get_groomed_filenames()[domain];
11481146

11491147
domain_type = ProjectUtils::determine_domain_type(path);
1150-
SW_DEBUG("Getting groomed mesh for subject {}, domain {}: {}", subject, domain, path);
1151-
SW_DEBUG("Domain type: {}", static_cast<int>(domain_type));
11521148
}
11531149

11541150
auto constraint_filename = subjects[subject]->get_constraints_filenames();

Libs/Groom/Groom.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ class Groom {
8787

8888
Mesh get_mesh(int subject, int domain, bool transformed = false, MeshSource source = MeshSource::Groomed);
8989

90-
9190
vtkSmartPointer<vtkPoints> get_landmarks(int subject, int domain);
9291

9392
int find_reference_landmarks(std::vector<vtkSmartPointer<vtkPoints>> landmarks);

0 commit comments

Comments
 (0)