Skip to content

Commit

Permalink
Fix too large number of log messages being created
Browse files Browse the repository at this point in the history
  • Loading branch information
minnerbe committed Dec 1, 2023
1 parent 72308c1 commit 73d17aa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ private static <M extends Model<M> & Affine2D<M>, S extends Model<S> & Affine2D<
for (final Tile<M> groupedTile : groupedTiles) {
final List<Tile<M>> imageTiles = solveItem.groupedTileToTiles().get(groupedTile);

if (groupedTiles.size() > 1 && LOG.isDebugEnabled())
if (imageTiles.size() > 1 && LOG.isDebugEnabled())
LOG.debug("assignConstantAffineModel: z={} grouped tile [{}] contains {} image tiles.",
z, groupedTile, imageTiles.size());

Expand Down

0 comments on commit 73d17aa

Please sign in to comment.