]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
osd: fix log messages
authorYehuda Sadeh <yehuda@hq.newdream.net>
Fri, 23 Oct 2009 19:50:37 +0000 (12:50 -0700)
committerYehuda Sadeh <yehuda@hq.newdream.net>
Fri, 23 Oct 2009 19:53:58 +0000 (12:53 -0700)
src/osd/OSD.cc

index c8ec9c7ef9bd8135d3ed8abaccdb540599e8369b..913c3806f553bc5528bdf2c60e0679b7e77014e3 100644 (file)
@@ -4346,7 +4346,7 @@ bool OSD::OSDCaps::parse(bufferlist::iterator& iter)
   try {
     ::decode(s, iter);
 
-    generic_dout(0) << "decoded caps: " << s << std::endl;
+    generic_dout(0) << "decoded caps: " << s << dendl;
 
     size_t pos = 0;
     string token;
@@ -4437,10 +4437,10 @@ do { \
     return false;
   }
 
-  generic_dout(0) << "default=" << default_action << std::endl;
+  generic_dout(0) << "default=" << default_action << dendl;
   map<int, OSDPoolCap>::iterator it;
   for (it = pools_map.begin(); it != pools_map.end(); ++it) {
-    generic_dout(0) << it->first << " -> (" << it->second.allow << "." << it->second.deny << ")" << std::endl;
+    generic_dout(0) << it->first << " -> (" << it->second.allow << "." << it->second.deny << ")" << dendl;
   }
 
   return true;