]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
common/ceph_parser.cc: cleanup
authorYehuda Sadeh <yehuda@inktank.com>
Thu, 21 Feb 2013 22:56:11 +0000 (14:56 -0800)
committerYehuda Sadeh <yehuda@inktank.com>
Wed, 8 May 2013 17:54:53 +0000 (10:54 -0700)
remove extra logging to stdout

Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
src/common/ceph_json.cc

index 48009c575d96c18d63481e918e18b5e555b5405d..598cb819f0f1dfabf1b5b539f17de9f45a0899e9 100644 (file)
@@ -57,7 +57,6 @@ JSONObj::~JSONObj()
 
 void JSONObj::add_child(string el, JSONObj *obj)
 {
-  cout << "add_child: " << name << " <- " << el << std::endl;
   children.insert(pair<string, JSONObj *>(el, obj));
 }
 
@@ -171,7 +170,6 @@ JSONObj *JSONObj::get_parent()
 
 bool JSONObj::is_object()
 {
-  cout << data.type() << std::endl;
   return (data.type() == obj_type);
 }