Skip to content

Commit 251dd18

Browse files
committed
doc: Running Sonata software: Fix command for writing debug logs
A backslash was missing in the multi-line xmake config command. The debug-allocator option is no longer a boolean and a value of information should be used for maximum verbosity.
1 parent 722cdea commit 251dd18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/guide/running-software.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,10 @@ If you want debug logs from the RTOS, configure your build with the following ad
8686

8787
```sh
8888
rm -rf build .xmake
89-
xmake config -P examples
89+
xmake config -P examples \
9090
--debug-scheduler=y --debug-locks=y \
9191
--debug-cxxrt=y --debug-loader=y \
92-
--debug-token_library=y --debug-allocator=y
92+
--debug-token_library=y --debug-allocator=information
9393
xmake -P examples
9494
```
9595

0 commit comments

Comments
 (0)