| 93 | } |
| 94 | |
| 95 | void set_log_level(unsigned subsys, uint8_t log) |
| 96 | { |
| 97 | ceph_assert(subsys < m_subsys.size()); |
| 98 | m_subsys[subsys].log_level = log; |
| 99 | m_gather_levels[subsys] = \ |
| 100 | std::max(log, m_subsys[subsys].gather_level); |
| 101 | } |
| 102 | |
| 103 | void set_gather_level(unsigned subsys, uint8_t gather) |
| 104 | { |