From ad7fca914877fc4370624ae46468d05bfd92f52c Mon Sep 17 00:00:00 2001 From: nicolasrochette Date: Thu, 18 Dec 2025 10:56:13 +0100 Subject: [PATCH] Now printing to log.debug (vs warning) when a file name comprises multiple dots (closes #3899) --- src/scanpy/readwrite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scanpy/readwrite.py b/src/scanpy/readwrite.py index cdf9f82f5d..1e94911003 100644 --- a/src/scanpy/readwrite.py +++ b/src/scanpy/readwrite.py @@ -1157,7 +1157,7 @@ def is_valid_filename( raise ValueError(msg) return ext if return_ext else True if len(ext_from_file) > 2: - logg.warning( + logg.debug( f"Your filename has more than two extensions: {ext_from_file}.\n" f"Only considering the two last: {ext_from_file[-2:]}." )