Skip to content

Commit

Permalink
reinstate logger debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriupredoi committed Sep 6, 2022
1 parent c399d9a commit c6c9274
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions esmvalcore/preprocessor/_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,6 +504,8 @@ def _concatenate_overlapping_cubes(cubes):
if c1_delta.data.shape == ():
c1_delta = iris.util.new_axis(c1_delta, scalar_coord="time")
cubes = iris.cube.CubeList([c1_delta, cubes[1]])
logger.debug("Attempting concatenatenation of %s with %s",
c1_delta, cubes[1])
try:
cubes = [iris.cube.CubeList(cubes).concatenate_cube()]
except iris.exceptions.ConcatenateError as ex:
Expand Down

0 comments on commit c6c9274

Please sign in to comment.