From bf7aee92036ec22ccf344f7dcec9bf003050ad8d Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 25 Apr 2026 20:32:29 -0400 Subject: [PATCH] xo-gc: minor debug output --- src/gc/GCObjectStore.cpp | 3 ++- utest/MutationLogStore.test.cpp | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gc/GCObjectStore.cpp b/src/gc/GCObjectStore.cpp index f8e8c47..830fdb4 100644 --- a/src/gc/GCObjectStore.cpp +++ b/src/gc/GCObjectStore.cpp @@ -794,7 +794,8 @@ namespace xo { GCObjectStore::install_type(const AGCObject & meta) noexcept { scope log(XO_DEBUG(config_.debug_flag_), - xtag("tseq", meta._typeseq())); + xtag("tseq", meta._typeseq()), + xtag("tname", TypeRegistry::id2name(meta._typeseq()))); typeseq tseq = meta._typeseq(); diff --git a/utest/MutationLogStore.test.cpp b/utest/MutationLogStore.test.cpp index 3546ba4..40e5f25 100644 --- a/utest/MutationLogStore.test.cpp +++ b/utest/MutationLogStore.test.cpp @@ -286,7 +286,8 @@ namespace ut { {Cmd::assign_root, 2, 0}, // [2] = [0] = 99 - // o.g. [2] now garbage + // phase 3 gc (4th gc) + // o.g. o.g. [2] would be garbage, if we collected g1 // ----- phase 4 -----