From de8813f9f6de7b5ffc459e80768673cbff3cb74e Mon Sep 17 00:00:00 2001 From: hsaturn Date: Mon, 22 Mar 2021 02:35:10 +0100 Subject: [PATCH] No more serial prints --- src/StringIndexer.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/StringIndexer.h b/src/StringIndexer.h index 5c27e87..1f97636 100644 --- a/src/StringIndexer.h +++ b/src/StringIndexer.h @@ -2,7 +2,7 @@ #include #include #include -#include +// #include #include /*** @@ -36,7 +36,7 @@ class StringIndexer { strings[index].str = std::string(str, len); strings[index].used++; - Serial << "Creating index " << index << " for (" << strings[index].str.c_str() << ") len=" << len << endl; + // Serial << "Creating index " << index << " for (" << strings[index].str.c_str() << ") len=" << len << endl; return index; } } @@ -66,7 +66,7 @@ class StringIndexer if (it->second.used == 0) { strings.erase(it); - Serial << "Removing string(" << it->second.str.c_str() << ") size=" << strings.size() << endl; + // Serial << "Removing string(" << it->second.str.c_str() << ") size=" << strings.size() << endl; } } }