Impl DEEP_DEBUG log level

This commit is contained in:
2026-03-22 23:24:50 +01:00
parent faf4cae642
commit 1c1f155ce0
2 changed files with 12 additions and 1 deletions

View File

@@ -25,6 +25,10 @@ public:
#ifdef DEBUG
int debug(String message);
#endif
#ifdef DEEP_DEBUG
int deep_debug(String message);
#endif
};
system_logger::system_logger(HardwareSerial *output)
@@ -68,4 +72,10 @@ int system_logger::error(String message) {
int system_logger::debug(String message) {
return this->print_message(" [DEBUG] ", message);
}
#endif
#ifdef DEEP_DEBUG
int system_logger::deep_debug(String message) {
return this->print_message(" [DEEP_DEBUG] ", message);
}
#endif