summaryrefslogtreecommitdiff
path: root/src/common/ceph_json.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/ceph_json.cc')
-rw-r--r--src/common/ceph_json.cc2
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);
}