Skip to content

Commit ddfd481

Browse files
committed
Remove debugging output
1 parent 4fba0eb commit ddfd481

2 files changed

Lines changed: 0 additions & 3 deletions

File tree

src/IO/HDF5/HDF5IOHandler.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1566,7 +1566,6 @@ void HDF5IOHandlerImpl::writeDataset(
15661566

15671567
filespace = H5Dget_space(dataset_id);
15681568
int ndims = H5Sget_simple_extent_ndims(filespace);
1569-
std::cout << "DATASET DIMENSIONS: " << ndims << std::endl;
15701569

15711570
if (ndims == 0)
15721571
{
@@ -2051,7 +2050,6 @@ void HDF5IOHandlerImpl::readDataset(
20512050

20522051
filespace = H5Dget_space(dataset_id);
20532052
int ndims = H5Sget_simple_extent_ndims(filespace);
2054-
std::cout << "DATASET DIMENSIONS: " << ndims << std::endl;
20552053

20562054
if (ndims == 0)
20572055
{

test/python/unittest/API/APITest.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2255,7 +2255,6 @@ def testScalarHdf5Fields(self):
22552255
E = f["data"]["0"]["meshes"]["E"]
22562256
reapply_attributes = \
22572257
{key: val for key, val in E["x"].attrs.items()}
2258-
print("ATTRIBUTES:", reapply_attributes)
22592258
del E["x"]
22602259
E["x"] = 44
22612260
for key, val in reapply_attributes.items():

0 commit comments

Comments
 (0)