]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
include/Completion: de-globalize
authorColin Patrick McCabe <cmccabe@alumni.cmu.edu>
Fri, 10 Jun 2011 21:06:54 +0000 (14:06 -0700)
committerColin Patrick McCabe <cmccabe@alumni.cmu.edu>
Mon, 20 Jun 2011 23:22:26 +0000 (16:22 -0700)
Signed-off-by: Colin McCabe <colin.mccabe@dreamhost.com>
src/include/Completion.h

index e90f57498b17ae41e185f8926a00003381d22422..1979eb75feabe036dd2eab1b574dc087d96a96b0 100644 (file)
@@ -39,10 +39,10 @@ inline void complete(T& c, int result = 0)
   T ls;
   ls.swap(c); 
 
-  generic_dout(10) << ls.size() << " completions to complete with " << result << dendl;
+  //cout << ls.size() << " completions to complete with " << result << std::endl;
   for (typename T::iterator it = ls.begin(); it != ls.end(); it++) {
     Completion *c = *it;
-    generic_dout(10) << "---- " << c << dendl;
+    //cout << "---- " << c << std::endl;
     c->complete(result);
   }
 }