Removed unused code

This commit is contained in:
Magnus Persson
2022-01-08 23:42:44 +01:00
parent 4731569b75
commit 3b3ee5bbf9
6 changed files with 1 additions and 33 deletions

View File

@ -166,8 +166,6 @@ void PerfLogging::print() {
PerfEntry* pe = first;
while (pe != 0) {
// Log.notice( F("PERF: %s=%l ms (%l, %l)" CR), pe->key, (pe->end -
// pe->start), pe->start, pe->end );
Log.notice(F("PERF: %s %ums" CR), pe->key, pe->max);
pe = pe->next;
}