@@ -85,7 +85,7 @@ void error (const char *format, va_list logVariables);
85
85
void debug (const char *format, va_list logVariables);
86
86
void error (const char *format, va_list logVariables);
87
87
void verbose(const char *format, va_list logVariables);
88
-
88
+ void verbose(const char *format, va_list logVariables);
89
89
```
90
90
91
91
where the format string can be used to format the log variables
@@ -108,10 +108,11 @@ The format string may come from flash memory.
108
108
examples
109
109
110
110
```
111
- Log.info ( "Log as Info with integer values : %d, %d"CR , 34, 799870);
112
- Log.debug (F("Log as Debug with hex values from Flash : %x, %X"CR ), 24342, 25546);
113
- Log.error (F("Log as Error with string value from Flash : %s"CR ), "value");
114
- Log.verbose ( "Log as Verbose with long value : %l"CR , 7979);
111
+ Log.fatal (F("Log as Fatal with string value from Flash : %s"CR ) , "value" );
112
+ Log.error ( "Log as Error with binary values : %b, %B"CR , 23 , 345808);
113
+ Log.warning (F("Log as Warning with integer values from Flash : %d, %d"CR) , 34 , 799870);
114
+ Log.notice ( "Log as Notice with hexadecimal values : %x, %X"CR , 21 , 348972);
115
+ Log.verbose (F("Log as Verbose with bool value from Flash : %t, %T"CR) , true, false );
115
116
```
116
117
117
118
0 commit comments