remove logging from Time operators

This commit is contained in:
Tom Henderson
2012-12-16 17:02:18 -08:00
parent f1734920c9
commit 5aca64e824

View File

@@ -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);