mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #12682 from jeromecoutant/PR_TRACELEVEL
MBED TRACE default level is INFOpull/12728/head
commit
6cdb44ea38
|
@ -151,6 +151,8 @@ In Mbed OS, the build time maximum tracing level can be set through `mbed_app.js
|
|||
}
|
||||
```
|
||||
|
||||
When max-level is not set by the application, default level is INFO.
|
||||
|
||||
### Helping functions
|
||||
|
||||
The purpose of the helping functions is to provide simple conversions,
|
||||
|
|
|
@ -115,7 +115,7 @@ extern "C" {
|
|||
#define TRACE_LEVEL_CMD 0x01
|
||||
|
||||
#ifndef MBED_TRACE_MAX_LEVEL
|
||||
#define MBED_TRACE_MAX_LEVEL TRACE_LEVEL_DEBUG
|
||||
#define MBED_TRACE_MAX_LEVEL TRACE_LEVEL_INFO
|
||||
#endif
|
||||
|
||||
//usage macros:
|
||||
|
|
Loading…
Reference in New Issue