1
0
Fork 0

chore(api): log overlap factor when outpainting

This commit is contained in:
Sean Sube 2023-02-06 22:43:58 -06:00
parent de4a3818a0
commit a9f4e19616
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ def upscale_outpaint(
logger.debug("outpainting with 0 margin, using grid tiling")
output = process_tile_grid(source_image, SizeChart.auto, 1, [outpaint])
elif border.left == border.right and border.top == border.bottom:
logger.debug("outpainting with an even border, using spiral tiling")
logger.debug("outpainting with an even border, using spiral tiling with %s overlap", overlap)
output = process_tile_spiral(
source_image, SizeChart.auto, 1, [outpaint], overlap=overlap
)