core: add delimiters to log message so fields don't run together

This commit is contained in:
Peter D. Barnes, Jr
2023-02-16 16:43:09 -08:00
parent 34b6c4f097
commit 8894c8fad9

View File

@@ -85,7 +85,7 @@ MapScheduler::PeekNext() const
Event ev;
ev.impl = i->second;
ev.key = i->first;
NS_LOG_DEBUG(this << ev.impl << ev.key.m_ts << ev.key.m_uid);
NS_LOG_DEBUG(this << ": " << ev.impl << ", " << ev.key.m_ts << ", " << ev.key.m_uid);
return ev;
}
@@ -99,7 +99,7 @@ MapScheduler::RemoveNext()
ev.impl = i->second;
ev.key = i->first;
m_list.erase(i);
NS_LOG_DEBUG(this << ev.impl << ev.key.m_ts << ev.key.m_uid);
NS_LOG_DEBUG("@" << this << ": " << ev.impl << ", " << ev.key.m_ts << ", " << ev.key.m_uid);
return ev;
}