Skip to content

Commit e7cc9e4

Browse files
committed
Fixing // DEBUG -> // LOGGING comments
1 parent 015a459 commit e7cc9e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Logger.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
#ifdef LOGGING
44
Level Logger::log_threshold = WARN;
5-
#endif // DEBUG
5+
#endif // LOGGING

Logger.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void print_log_level(const Level& level)
2727
case ERROR: Serial.print("(ERROR)"); break;
2828
case FATAL: Serial.print("(FATAL)"); break;
2929
}
30-
#endif // DEBUG
30+
#endif // LOGGING
3131
}
3232

3333
inline
@@ -40,7 +40,7 @@ void print_log_levels()
4040
}
4141
print_log_level(FATAL);
4242
Serial.println("");
43-
#endif // DEBUG
43+
#endif // LOGGING
4444
}
4545

4646

0 commit comments

Comments
 (0)