remove file size alerts

pull/139/head
Aevann 2023-03-14 08:19:01 +02:00
parent bd2355007c
commit 5ce067ed70
1 changed files with 0 additions and 4 deletions

View File

@ -201,10 +201,6 @@ def process_image(filename:str, v, resize=0, trim=False, uploader_id:Optional[in
return None
size_after_conversion = os.stat(filename).st_size
if size_after_conversion - size > 500000:
print(STARS, flush=True)
print(f'{filename}: {oldformat}@{int(size/1024)}KB -> WEBP@{int(size_after_conversion/1024)}KB', flush=True)
print(STARS, flush=True)
if resize:
if size_after_conversion > MAX_IMAGE_SIZE_BANNER_RESIZED_MB * 1024 * 1024: