From bd0dd3aae6dbd15f42fdc7fe97e40ef978bfaf51 Mon Sep 17 00:00:00 2001 From: John Abraham Date: Tue, 30 Jul 2013 05:30:15 -0700 Subject: [PATCH] NetAnim: Typo in rp tag --- src/netanim/model/animation-interface.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netanim/model/animation-interface.cc b/src/netanim/model/animation-interface.cc index 9d6dea582..bce3d6859 100644 --- a/src/netanim/model/animation-interface.cc +++ b/src/netanim/model/animation-interface.cc @@ -162,7 +162,7 @@ void AnimationInterface::RecursiveIpv4RoutePathSearch (std::string from, std::st { return; } - NS_LOG_UNCOND ("Node: " << fromNode->GetId () << " G:" << rt->GetGateway ()); + NS_LOG_DEBUG ("Node: " << fromNode->GetId () << " G:" << rt->GetGateway ()); std::ostringstream oss; oss << rt->GetGateway (); if (oss.str () == "0.0.0.0" && (sockerr != Socket::ERROR_NOROUTETOHOST)) @@ -1999,7 +1999,7 @@ std::string AnimationInterface::GetXMLOpenClose_rp (uint32_t nodeId, std::string Ipv4RoutePathElement rpElement = *i; oss << "" << std::endl; } - oss << "" << std::endl; + oss << "" << std::endl; return oss.str (); }