From cf3fc87bc22e2980a258d17058bdd9836f8201d8 Mon Sep 17 00:00:00 2001 From: Donat Zenichev Date: Thu, 30 Jul 2026 14:48:00 +0200 Subject: [PATCH] MT#65612 RegThread: print DI factory pointer For debug purposes. No functional change. Change-Id: I78a93fb41fb7ca748f088d83ffd4751c8dde8908 --- apps/reg_agent/RegistrationAgent.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/reg_agent/RegistrationAgent.cpp b/apps/reg_agent/RegistrationAgent.cpp index 9f3e0c98..b2eed4e5 100644 --- a/apps/reg_agent/RegistrationAgent.cpp +++ b/apps/reg_agent/RegistrationAgent.cpp @@ -117,6 +117,9 @@ void RegThread::add_reg(const RegInfo& ri) { void RegThread::create_registration(RegInfo& ri) { AmDynInvokeFactory* di_f = AmPlugIn::instance()->getFactory4Di("registrar_client"); + + DBG("registrar_client factory='%p'\n", di_f); + if (di_f == NULL) { ERROR("unable to get a registrar_client\n"); } else { @@ -144,7 +147,11 @@ void RegThread::create_registration(RegInfo& ri) { bool RegThread::check_registration(const RegInfo& ri) { if (!ri.handle.length()) return false; + AmDynInvokeFactory* di_f = AmPlugIn::instance()->getFactory4Di("registrar_client"); + + DBG("registrar_client factory='%p'\n", di_f); + if (di_f == NULL) { ERROR("unable to get a registrar_client\n"); } else {