Skip to content

Commit

Permalink
Merge pull request #12 from doug1234/VarNameBooBoo
Browse files Browse the repository at this point in the history
Updated variable name
  • Loading branch information
jrw972 authored Sep 28, 2023
2 parents fd0739a + 4d02bca commit 468682b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dds_simple.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ class DDSSimpleManager : public DDSManager
auto joinDomainFn = [this, domain = domainID](const ParticipantInfo& info) {
std::stringstream sstr;
sstr << "New participant joined domain " << domain << ". IP Address:" << info.location;
sstr << " guid:" << info.guid << " at time:" << info.timestamp << ".";
sstr << " guid:" << info.guid << " at time:" << info.discovered_timestamp << ".";
m_messageHandler(LogMessageType::DDS_INFO, sstr.str());
};

auto leaveDomainFn = [this, domain = domainID](const ParticipantInfo& info) {
std::stringstream sstr;
sstr << "Participant left domain " << domain << ". IP Address:" << info.location;
sstr << " guid:" << info.guid << " at time:" << info.timestamp << ".";
sstr << " guid:" << info.guid << " at time:" << info.discovered_timestamp << ".";
m_messageHandler(LogMessageType::DDS_INFO, sstr.str());
};

Expand Down

0 comments on commit 468682b

Please sign in to comment.