From 22b636070b43145798081a91f5f7e41f5983e5db Mon Sep 17 00:00:00 2001 From: Alexander Rashed Date: Tue, 9 Jun 2026 17:10:19 +0200 Subject: [PATCH] Reduce log level for skip_verification_paths from WARNING to DEBUG Skipping specific snapshot paths is a deliberate, common call-site choice and not a condition worth surfacing as a warning to all consumers. Co-Authored-By: Claude Sonnet 4.6 --- localstack_snapshot/snapshots/prototype.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/localstack_snapshot/snapshots/prototype.py b/localstack_snapshot/snapshots/prototype.py index a32132d..350849d 100644 --- a/localstack_snapshot/snapshots/prototype.py +++ b/localstack_snapshot/snapshots/prototype.py @@ -239,7 +239,7 @@ def _assert_all( self.skip_verification_paths = skip_verification_paths or [] if skip_verification_paths: - SNAPSHOT_LOGGER.warning( + SNAPSHOT_LOGGER.debug( "Snapshot verification disabled for paths: %s", skip_verification_paths )