log verbosity changes

This commit is contained in:
Craig Dowell
2007-10-08 18:13:26 -07:00
parent 3a41b51160
commit bf2adc6861
3 changed files with 102 additions and 36 deletions

View File

@@ -23,7 +23,8 @@ using namespace ns3;
int
main (int argc, char *argv[])
{
LogComponentEnable ("HelloSimulator", LOG_LEVEL_INFO);
LogComponentEnable ("HelloSimulator",
LogLevel (LOG_LEVEL_INFO | LOG_PREFIX_ALL));
NS_LOG_INFO ("Hello Simulator");
}