From 5aca64e824eca94af8a537df88a8ca2808985f95 Mon Sep 17 00:00:00 2001 From: Tom Henderson Date: Sun, 16 Dec 2012 17:02:18 -0800 Subject: [PATCH] remove logging from Time operators --- src/core/model/time.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/core/model/time.cc b/src/core/model/time.cc index 7e2274141..8dc163c24 100644 --- a/src/core/model/time.cc +++ b/src/core/model/time.cc @@ -147,7 +147,6 @@ Time::GetResolution (void) std::ostream& operator<< (std::ostream& os, const Time & time) { - NS_LOG_FUNCTION (&os << time); std::string unit; switch (Time::GetResolution ()) { @@ -180,7 +179,6 @@ operator<< (std::ostream& os, const Time & time) } std::istream& operator>> (std::istream& is, Time & time) { - NS_LOG_FUNCTION (&is << time); std::string value; is >> value; time = Time (value);