| 69 | } |
| 70 | |
| 71 | int Logging::getLevel(uint8_t slot) const |
| 72 | { |
| 73 | #ifndef DISABLE_LOGGING |
| 74 | return _level[slot]; |
| 75 | #else |
| 76 | return 0; |
| 77 | #endif |
| 78 | } |
| 79 | |
| 80 | void Logging::setShowLevel(uint8_t slot, bool showLevel) |
| 81 | { |
nothing calls this directly
no outgoing calls
no test coverage detected