Skip to content

Commit 9e732b3

Browse files
authored
Update README.md
1 parent 1c765eb commit 9e732b3

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ void error (const char *format, va_list logVariables);
8585
void debug (const char *format, va_list logVariables);
8686
void error (const char *format, va_list logVariables);
8787
void verbose(const char *format, va_list logVariables);
88-
88+
void verbose(const char *format, va_list logVariables);
8989
```
9090

9191
where the format string can be used to format the log variables
@@ -108,10 +108,11 @@ The format string may come from flash memory.
108108
examples
109109

110110
```
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 );
115116
```
116117

117118

0 commit comments

Comments
 (0)