- fix logger - use template method finally

This commit is contained in:
2026-02-28 06:36:31 +03:00
parent ece1847796
commit 226bbe9b0b
3 changed files with 9 additions and 11 deletions

View File

@@ -372,9 +372,9 @@ void UserAgent::stop()
// Dump statistics here
ICELogInfo(<< "Remaining "
<< Session::InstanceCounter << " session(s), "
<< ResipSession::InstanceCounter << " resip DialogSet(s), "
<< resip::ClientRegistration::InstanceCounter << " ClientRegistration(s)");
<< Session::InstanceCounter.load() << " session(s), "
<< ResipSession::InstanceCounter.load() << " resip DialogSet(s), "
<< resip::ClientRegistration::InstanceCounter.load() << " ClientRegistration(s)");
mDum->shutdown(this);
onDumCanBeDeleted();