| 62 | } |
| 63 | |
| 64 | void Logging::setLevel(uint8_t slot, int level) |
| 65 | { |
| 66 | #ifndef DISABLE_LOGGING |
| 67 | _level[slot] = constrain(level, LOG_LEVEL_SILENT, LOG_LEVEL_OUTPUT); |
| 68 | #endif |
| 69 | } |
| 70 | |
| 71 | int Logging::getLevel(uint8_t slot) const |
| 72 | { |
no outgoing calls
no test coverage detected