From f051434e7b6047d1336e0724dfabf2b660cceb81 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Mon, 3 Mar 2025 12:13:43 -0500 Subject: [PATCH] adjust lookup table logging slightly; --- src/common/lookups/PeerListLookup.cpp | 2 +- src/common/lookups/RadioIdLookup.cpp | 2 +- src/common/lookups/TalkgroupRulesLookup.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/lookups/PeerListLookup.cpp b/src/common/lookups/PeerListLookup.cpp index 454e07c3..5552a928 100644 --- a/src/common/lookups/PeerListLookup.cpp +++ b/src/common/lookups/PeerListLookup.cpp @@ -234,7 +234,7 @@ bool PeerListLookup::load() if (size == 0U) return false; - LogInfoEx(LOG_HOST, "Loaded %lu peers into list", size); + LogInfoEx(LOG_HOST, "Loaded %lu entries into peer list lookup table", size); return true; } diff --git a/src/common/lookups/RadioIdLookup.cpp b/src/common/lookups/RadioIdLookup.cpp index 4a02c3c6..e823407b 100644 --- a/src/common/lookups/RadioIdLookup.cpp +++ b/src/common/lookups/RadioIdLookup.cpp @@ -204,7 +204,7 @@ bool RadioIdLookup::load() if (size == 0U) return false; - LogInfoEx(LOG_HOST, "Loaded %u entries into lookup table", size); + LogInfoEx(LOG_HOST, "Loaded %lu entries into radio ID lookup table", size); return true; } diff --git a/src/common/lookups/TalkgroupRulesLookup.cpp b/src/common/lookups/TalkgroupRulesLookup.cpp index 1d477648..ae78c2d8 100644 --- a/src/common/lookups/TalkgroupRulesLookup.cpp +++ b/src/common/lookups/TalkgroupRulesLookup.cpp @@ -335,7 +335,7 @@ bool TalkgroupRulesLookup::load() if (size == 0U) return false; - LogInfoEx(LOG_HOST, "Loaded %u entries into lookup table", size); + LogInfoEx(LOG_HOST, "Loaded %lu entries into talkgroup rules table", size); return true; }