1
0
Fork 0

Remove a log message.

This commit is contained in:
James Turner 2016-12-21 11:36:27 +00:00
parent d6313e52b5
commit 95e09de1ff

View file

@ -170,7 +170,8 @@ using std::string;
RecentlyRemovedNode m(child, 0);
auto rrIt = std::find(recentlyRemoved.begin(), recentlyRemoved.end(), m);
if (rrIt != recentlyRemoved.end()) {
SG_LOG(SG_NETWORK, SG_INFO, "recycling recently removed:" << rrIt->path);
// recycle nodes which get thrashed from Nasal (deleted + re-created
// each time a Nasal timer fires)
removedNodes.erase(rrIt->id); // don't remove it!
idHash.insert(std::make_pair(child, rrIt->id));
changedNodes.insert(child);