Skip to content

Commit d4ebdd7

Browse files
fix: return raw2img log to original state
1 parent 3d1e016 commit d4ebdd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rawtools/dat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def determine_bit_depth(fp, dims):
4545
"""
4646
file_size = os.stat(fp).st_size
4747
minimum_size = reduce(lambda x,y: x * y, dims) # get product of dimensions
48-
logging.info(f"Minimum calculated size of '{fp}' is {minimum_size} bytes")
48+
logging.debug(f"Minimum calculated size of '{fp}' is {minimum_size} bytes")
4949
expected_filesize = minimum_size * 2
5050
if file_size == minimum_size:
5151
return 'uint8'

0 commit comments

Comments
 (0)