mirror of
https://github.com/KevinMidboe/TinyGSM.git
synced 2025-12-08 20:48:44 +00:00
Removed most of the extra debugging I'd added
This commit is contained in:
@@ -45,14 +45,14 @@
|
||||
namespace {
|
||||
template<typename T>
|
||||
static void DBG(T last) {
|
||||
// TINY_GSM_DEBUG.println(last);
|
||||
TINY_GSM_DEBUG.print(last);
|
||||
TINY_GSM_DEBUG.println(last);
|
||||
// TINY_GSM_DEBUG.print(last);
|
||||
}
|
||||
|
||||
template<typename T, typename... Args>
|
||||
static void DBG(T head, Args... tail) {
|
||||
TINY_GSM_DEBUG.print(head);
|
||||
// TINY_GSM_DEBUG.print(' ');
|
||||
TINY_GSM_DEBUG.print(' ');
|
||||
DBG(tail...);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user