Skip to content

Commit 6dfabf9

Browse files
authored
Update README.md
1 parent c5875f5 commit 6dfabf9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,15 +109,15 @@ The library also provides a versatile [AudioPlayer](https://pschatzmann.github.i
109109
110110
The application uses a built in logger (see AudioLogger.h and AudioConfig.h). You can e.g. deactivate the logging by changing USE_AUDIO_LOGGING to false in the AudioConfig.h:
111111
112-
```
112+
```C++
113113
#define USE_AUDIO_LOGGING false
114114
#define LOG_LEVEL AudioLogger::Warning
115115
#define LOG_STREAM Serial
116116
```
117117

118118
Per default we use the log level warning and the logging output is going to Serial. You can also change this in your sketch by calling AudioLogger begin with the output stream and the log level e.g:
119119

120-
```
120+
```C++
121121
AudioLogger::instance().begin(Serial, AudioLogger::Debug);
122122
```
123123

0 commit comments

Comments
 (0)