We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 396ea8b commit 7a970c8Copy full SHA for 7a970c8
2 files changed
cloudnetpy/categorize/lidar.py
@@ -59,10 +59,10 @@ def _mask_profiles(
59
) -> None:
60
prefix = f"Unable to interpolate lidar for {len(ind)}"
61
if dim == "time" and ind:
62
- logging.warning("%s time steps", prefix)
+ logging.debug("%s time steps", prefix)
63
data[ind, :] = ma.masked
64
elif dim == "height" and ind:
65
- logging.warning("%s altitudes", prefix)
+ logging.debug("%s altitudes", prefix)
66
data[:, ind] = ma.masked
67
68
def _add_meta(self) -> None:
cloudnetpy/utils.py
@@ -504,7 +504,7 @@ def interpolate_1d(
504
505
if len(bad_idx) > 0:
506
msg = f"Unable to interpolate for {len(bad_idx)} time steps"
507
- logging.warning(msg)
+ logging.debug(msg)
508
interpolated[bad_idx] = ma.masked
509
510
return interpolated
0 commit comments