Skip to content

Commit

Permalink
README edits and site update
Browse files Browse the repository at this point in the history
  • Loading branch information
attipaci committed Sep 23, 2024
1 parent 5987abd commit 9094590
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -910,13 +910,13 @@ one of the pre-defined constant expressions in `smax.h`:
| `XMessage` `type` | Description |
| -------------------------- | ----------------------------------------------- |
| `SMAX_MSG_STATUS` | Program status update |
| `SMAX_MSG_INFO` | Informational program message |
| `SMAX_MSG_DETAIL` | Program detail (i.e. verbose messages) |
| `SMAX_MSG_PROGRESS` | Program detail (i.e. verbose messages) |
| `SMAX_MSG_DEBUG` | Program debug messages (also e.g. traces) |
| `SMAX_MSG_WARNING` | Program warnings |
| `SMAX_MSG_ERROR` | Program errors |
| `SMAX_MSG_STATUS` | status update |
| `SMAX_MSG_INFO` | onformational program message |
| `SMAX_MSG_DETAIL` | additional detail (e.g. for verbose messages). |
| `SMAX_MSG_PROGRESS` | progress update. |
| `SMAX_MSG_DEBUG` | debug messages (also e.g. traces) |
| `SMAX_MSG_WARNING` | warning message |
| `SMAX_MSG_ERROR` | error message |
Once you no longer need to process messages by the given processor function, you can remove it from the call list by
passing its ID number (<0) to `smaxRemoveMessageProcessor()`.
Expand Down
4 changes: 2 additions & 2 deletions include/smax.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@
// SMA-X program message types.
#define SMAX_MSG_STATUS "status" ///< Program status update.
#define SMAX_MSG_INFO "info" ///< Informational program message.
#define SMAX_MSG_DETAIL "detail" ///< Program detail (i.e. verbose messages).
#define SMAX_MSG_PROGRESS "progress" ///< Program detail (i.e. verbose messages).
#define SMAX_MSG_DETAIL "detail" ///< Additional program detail provided (e.g. for verbose mode)
#define SMAX_MSG_PROGRESS "progress" ///< Program progress update.
#define SMAX_MSG_DEBUG "debug" ///< Program debug messages (also e.g. traces).
#define SMAX_MSG_WARNING "warning" ///< Program warnings.
#define SMAX_MSG_ERROR "error" ///< Program errors.
Expand Down

0 comments on commit 9094590

Please sign in to comment.