disable log unless debug build

This commit is contained in:
Craig Dowell
2007-09-13 22:17:29 -07:00
parent 2e1dcf1479
commit ed9f98bda1
5 changed files with 69 additions and 17 deletions

View File

@@ -214,7 +214,7 @@ bool
Queue::IsEmpty (void)
{
NS_LOG_FUNCTION;
NS_LOG_LOGIC ("returns" << (m_nPackets == 0));
NS_LOG_LOGIC ("returns " << (m_nPackets == 0));
return m_nPackets == 0;
}