| 107 | } |
| 108 | |
| 109 | void mon_info_t::print(ostream& out) const |
| 110 | { |
| 111 | out << "mon." << name |
| 112 | << "(addrs " << public_addrs |
| 113 | << " priority " << priority |
| 114 | << " weight " << weight |
| 115 | << " crush_location " << crush_loc |
| 116 | << " added " << time_added |
| 117 | << ")"; |
| 118 | } |
| 119 | |
| 120 | void mon_info_t::dump(ceph::Formatter *f) const |
| 121 | { |
no test coverage detected