diff options
author | Yehuda Sadeh <yehuda@inktank.com> | 2013-02-21 14:56:11 -0800 |
---|---|---|
committer | Yehuda Sadeh <yehuda@inktank.com> | 2013-02-21 14:57:08 -0800 |
commit | 57c467bc0c06544d9653b5bc5b636fdc0aa1d768 (patch) | |
tree | 3839c578b096e7a56cf5e74e8196000f5f7ecdeb | |
parent | 8fb3ce949a31bd79f41367d7f26b414fa8bd59c5 (diff) | |
download | ceph-57c467bc0c06544d9653b5bc5b636fdc0aa1d768.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); } |