From 88d97175130f8d333688a569ec01f9c94f92b87d Mon Sep 17 00:00:00 2001 From: Carl Niklas Rydberg Date: Sun, 8 Feb 2026 09:01:13 +0100 Subject: [PATCH] Stop snapshot-anchor warning flood during state checks --- src/adapters/asl_store_index_fs/asl_store_index_fs.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/adapters/asl_store_index_fs/asl_store_index_fs.c b/src/adapters/asl_store_index_fs/asl_store_index_fs.c index bb63aea..c46450c 100644 --- a/src/adapters/asl_store_index_fs/asl_store_index_fs.c +++ b/src/adapters/asl_store_index_fs/asl_store_index_fs.c @@ -11,7 +11,6 @@ #include "amduat/enc/asl_core_index.h" #include "amduat/enc/asl_log.h" #include "amduat/hash/asl1.h" -#include "amduat/util/log.h" #include #include @@ -3827,13 +3826,6 @@ static bool amduat_asl_store_index_fs_current_state_impl( if (manifest.anchor_logseq > out_state->log_position) { out_state->log_position = manifest.anchor_logseq; } - } else { - amduat_log( - AMDUAT_LOG_WARN, - "index snapshot anchor beyond log tail; ignoring snapshot (snapshot=%" PRIu64 " anchor=%" PRIu64 " log_tail=%" PRIu64 ")", - (uint64_t)manifest.snapshot_id, - (uint64_t)manifest.anchor_logseq, - (uint64_t)last_logseq); } amduat_asl_snapshot_manifest_free(&manifest); } else if (record_count != 0u &&