Skip to content

Commit 76f67de

Browse files
committed
README.md
1 parent 87993fb commit 76f67de

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,20 @@ And some more useful examples:
113113

114114
#### Listening to the Result with a Webbrowser
115115

116-
I am providing a simple webserver which can render the audio data as wav result. Here are some examples
116+
I am providing a simple webserver which can render the audio data as wav result.
117+
Here are some examples:
117118

118119
- [streams-generator-webserver_wav](examples/streams-generator-webserver_wav) A Webserver which renders some generated sound
119120
- [streams-sam-webserver_wav](examples/streams-sam-webserver_wav) A Webserver which renders the result from the SAM TTS engine
120121

121122
#### Logging
122123

123-
The application uses a built in logger. You can adapt the loging by changing AudioConfig.h
124+
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:
124125

125126
```
126127
#define USE_AUDIO_LOGGING false
128+
#define LOG_LEVEL AudioLogger::Warning
129+
#define LOG_STREAM Serial
127130
```
128131

129132
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:

0 commit comments

Comments
 (0)