diff options
author | slioch <slioch@eng-140.vyatta.com> | 2009-07-28 15:12:30 -0700 |
---|---|---|
committer | slioch <slioch@eng-140.vyatta.com> | 2009-07-28 15:12:30 -0700 |
commit | 56efe337de62f998872bdf72a9858cc4e5021535 (patch) | |
tree | 31bbb6450ffe00ba0a2e8ccae951bd34e8c16b90 | |
parent | b798a90b2608b53d766bdb981e6eda9e471154b4 (diff) | |
download | vyatta-wanloadbalance-56efe337de62f998872bdf72a9858cc4e5021535.tar.gz vyatta-wanloadbalance-56efe337de62f998872bdf72a9858cc4e5021535.zip |
remove debug code
-rw-r--r-- | src/lbpathtest.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/lbpathtest.cc b/src/lbpathtest.cc index 3e81ed9..1792750 100644 --- a/src/lbpathtest.cc +++ b/src/lbpathtest.cc @@ -72,7 +72,6 @@ LBPathTest::start(LBData &lb_data) } while (!coll.empty()) { - cout << "AA:" << coll.size() << endl; set<LBHealth*>::iterator i = coll.begin(); while (i != coll.end()) { (*i)->start_new_test(); @@ -99,15 +98,12 @@ LBPathTest::start(LBData &lb_data) if (_debug) { cout << "LBPathTest::start() interface: " << (*i)->_interface << " response value: " << (*i)->_hresults.get_last_resp() << endl; } - cout << "A:" << resp << ", " << coll.size() << endl; if (resp == 0) { //means this interface has either exhausted its test cases or success - cout << "B:" << resp << ", " << coll.size() << endl; coll.erase(i++); } else { ++i; } - cout << "C:" << coll.size() << endl; } } } |