Skip to content

Commit a3bf71c

Browse files
committed
v1.0.4-QOS0: fixed how to show log outputs
1 parent 1f6d856 commit a3bf71c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This is a **Mqtt broker** developed for embedded devices, in **c++** programming
3636

3737
## Can't see broker activity outputs on Serial monitor?
3838

39-
* Since 6e0b3b8 commit, this library use esp32-hal-log.h to show broker activity outputs like new clients id, topis to subscribe, to pusblish etc...
39+
* Since 6e0b3b8 commit, this library use **esp32-hal-log.h** to show broker activity outputs like new clients id, topis to subscribe, to pusblish etc...
4040

4141
* To see this activity you need to set a **core debug level**, this level say to esp32-hal-log.h what outputs to show:
4242
* don't show logs: 0 (ARDUHAL_LOG_LEVEL_NONE)
@@ -50,15 +50,15 @@ This is a **Mqtt broker** developed for embedded devices, in **c++** programming
5050

5151
* To set core debug level:
5252
* **Arduino IDE**: set using, tools/Core Debug Level
53-
* **VSCODE arduino extension**: set using, arduino.json and adding ":
53+
* **VSCODE arduino extension**: add in arduino.json
5454

5555
~~~c++
5656
"buildPreferences": [
5757
["build.extra_flags", "-DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_INFO"]
5858
]
5959
~~~
6060

61-
* **Platformio**: set using
61+
* **Platformio**: add in build_flags
6262

6363
~~~yaml
6464
[env:esp32]
@@ -70,7 +70,7 @@ This is a **Mqtt broker** developed for embedded devices, in **c++** programming
7070
alexcajas/EmbeddedMqttBroker @ 1.0.4-qos0
7171
build_flags = -DCORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_INFO
7272
~~~
73-
73+
7474
---
7575

7676
## Table of contents

0 commit comments

Comments
 (0)