diff options
Diffstat (limited to 'src/common/ceph_json.cc')
-rw-r--r-- | src/common/ceph_json.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/common/ceph_json.cc b/src/common/ceph_json.cc index 8aa0a384eca..dd8eca2df4b 100644 --- a/src/common/ceph_json.cc +++ b/src/common/ceph_json.cc @@ -56,7 +56,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)); } @@ -170,7 +169,6 @@ JSONObj *JSONObj::get_parent() bool JSONObj::is_object() { - cout << data.type() << std::endl; return (data.type() == obj_type); } |