From ee1e7d31decba3729afa6f92325ee53ad3eea759 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1nos=20Benjamin=20Antal?= Date: Thu, 6 Apr 2023 12:07:17 +0200 Subject: [PATCH] Improve log messages --- src/storage/v2/durability/snapshot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/storage/v2/durability/snapshot.cpp b/src/storage/v2/durability/snapshot.cpp index 05b6b3883..52ea81da4 100644 --- a/src/storage/v2/durability/snapshot.cpp +++ b/src/storage/v2/durability/snapshot.cpp @@ -429,7 +429,7 @@ void LoadPartialConnectivity(const std::filesystem::path &path, utils::SkipList< if (vertex_it == vertex_acc.end()) { throw RecoveryFailure("Invalid snapshot data!"); } - spdlog::info("Recovering {} vertices.", vertices_count); + spdlog::info("Recovering connectivity for {} vertices.", vertices_count); for (uint64_t i = 0; i < vertices_count; ++i) { auto &vertex = *vertex_it; @@ -534,7 +534,7 @@ void LoadPartialConnectivity(const std::filesystem::path &path, utils::SkipList< } ++vertex_it; } - spdlog::info("Partial vertices are recovered."); + spdlog::info("Partial connectivities are recovered."); } RecoveredSnapshot LoadSnapshot(const std::filesystem::path &path, utils::SkipList *vertices,