From adc48019345b2ed85fa81f992f07a38f8c820639 Mon Sep 17 00:00:00 2001 From: John Readey Date: Thu, 24 Oct 2024 12:06:39 -0500 Subject: [PATCH] remove debug log statement --- h5pyd/_hl/dataset.py | 1 - 1 file changed, 1 deletion(-) diff --git a/h5pyd/_hl/dataset.py b/h5pyd/_hl/dataset.py index 9af7bbb..7958fa6 100644 --- a/h5pyd/_hl/dataset.py +++ b/h5pyd/_hl/dataset.py @@ -1388,7 +1388,6 @@ def __setitem__(self, args, val): args = args if isinstance(args, tuple) else (args,) # get the val dtype if we're passed a numpy array - self.log.debug(f"is ndarray: {isinstance(val, numpy.ndarray)}") try: msg = f"val dtype: {val.dtype}, shape: {val.shape} kind: {val.dtype.kind} metadata: {val.dtype.metadata}" self.log.debug(msg)