We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d1e016 commit d4ebdd7Copy full SHA for d4ebdd7
1 file changed
rawtools/dat.py
@@ -45,7 +45,7 @@ def determine_bit_depth(fp, dims):
45
"""
46
file_size = os.stat(fp).st_size
47
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")
+ logging.debug(f"Minimum calculated size of '{fp}' is {minimum_size} bytes")
49
expected_filesize = minimum_size * 2
50
if file_size == minimum_size:
51
return 'uint8'
0 commit comments