summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/badge/log.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/badge/log.h b/include/badge/log.h
index cbbe134..84e0dde 100644
--- a/include/badge/log.h
+++ b/include/badge/log.h
@@ -6,7 +6,8 @@ namespace de::uvok::badge
{
#define LOG_F(...) \
{ \
- Serial.printf("[%u] ", millis()); \
+ Serial.printf("[%lu] ", millis()); \
+ Serial.printf("[%s] ", __func__); \
Serial.printf(__VA_ARGS__); \
}