Skip to content

Commit 4b2b384

Browse files
Remove debug printing
1 parent fea0ae2 commit 4b2b384

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Framework/Nexus/src/NeXusFile.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -436,15 +436,10 @@ void File::openPath(std::string const &pathname) {
436436
// -- check the type of the entry, Group or DataSet
437437
// -- open with appropriate method
438438
if (m_fileTree[new_path] == scientific_data_set) {
439-
printf("data %s %s\n", new_path.c_str(), m_fileTree[new_path].c_str());
440-
LOG_LINE();
441439
m_current = std::make_shared<H5::DataSet>(H5::H5File::openDataSet(new_path));
442440
} else {
443-
printf("group %s %s\n", new_path.c_str(), m_fileTree[new_path].c_str());
444-
LOG_LINE()
445441
m_current = std::make_shared<H5::Group>(H5::H5File::openGroup(new_path));
446442
}
447-
LOG_LINE()
448443
m_path = new_path;
449444
} else {
450445
throw NXEXCEPTION("Attempted to open invalid path: " + new_path.string() + " from " + m_path.string());

0 commit comments

Comments
 (0)