summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYehuda Sadeh <yehuda@inktank.com>2013-02-21 14:56:11 -0800
committerYehuda Sadeh <yehuda@inktank.com>2013-02-25 15:00:07 -0800
commit12986a23535d07fef20828f755049b528dfa7b75 (patch)
tree28466b8b04a8862b7e261e5a6f22b691ce7d7554
parentb462ca943732f7e1b444c469193a8d81afb28a76 (diff)
downloadceph-12986a23535d07fef20828f755049b528dfa7b75.tar.gz
common/ceph_parser.cc: cleanup
remove extra logging to stdout Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
-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);
}