From 176f9722eadabb129d4947fd048969379012a7cd Mon Sep 17 00:00:00 2001 From: Tommaso Pecorella Date: Sun, 25 Jan 2015 06:58:42 +0100 Subject: [PATCH] Clarify radvd log output --- src/applications/model/radvd.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/model/radvd.cc b/src/applications/model/radvd.cc index 753b58a22..78d2d18de 100644 --- a/src/applications/model/radvd.cc +++ b/src/applications/model/radvd.cc @@ -273,7 +273,7 @@ void Radvd::Send (Ptr config, Ipv6Address dst, bool reschedule) delay = MAX_INITIAL_RTR_ADVERT_INTERVAL; } - NS_LOG_INFO ("Reschedule in " << delay); + NS_LOG_INFO ("Reschedule in " << delay << " milliseconds"); Time t = MilliSeconds (delay); m_unsolicitedEventIds[config->GetInterface ()] = Simulator::Schedule (t, &Radvd::Send, this, config, Ipv6Address::GetAllNodesMulticast (), true); }