diff options
author | Yehuda Sadeh <yehuda@inktank.com> | 2013-02-21 14:56:11 -0800 |
---|---|---|
committer | Yehuda Sadeh <yehuda@inktank.com> | 2013-03-22 11:23:58 -0700 |
commit | 4409ba8b608f673311d44c1d05071b34da2637cb (patch) | |
tree | cf588bd9e7df59362d9f68f2aa7db58f076365ae | |
parent | 57a98277d1e2dc17f64a265219f5862052fc54d5 (diff) | |
download | ceph-4409ba8b608f673311d44c1d05071b34da2637cb.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.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); } |