minor logging improvements

This commit is contained in:
Ace
2024-06-25 14:22:38 +02:00
parent 427c55ef63
commit 762538d4da
15 changed files with 27 additions and 17 deletions

View File

@@ -59,7 +59,7 @@ class Inkyimage:
logger.error("Invalid Image file provided", exc_info=True)
raise Exception("Please check if the path points to an image file.")
logger.info(f"width: {image.width}, height: {image.height}")
logger.debug(f"width: {image.width}, height: {image.height}")
image.convert(mode="RGBA") # convert to a more suitable format
self.image = image