diff options
author | Craig Scott <craig.scott@crascit.com> | 2019-10-13 21:08:23 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-10-13 21:08:44 (GMT) |
commit | 25eef45f16aa2046071d847d93314f3b843c870d (patch) | |
tree | 7471bf4a3305b6dcd464d6de75560328ace65dc8 /Help/release | |
parent | 001a1d2686243698527d59a9e5d002bbbb87a259 (diff) | |
parent | 7cf79f44195a86a907dba770f1f7a361d00e77c2 (diff) | |
download | CMake-25eef45f16aa2046071d847d93314f3b843c870d.zip CMake-25eef45f16aa2046071d847d93314f3b843c870d.tar.gz CMake-25eef45f16aa2046071d847d93314f3b843c870d.tar.bz2 |
Merge topic 'feature/CMAKE_MESSAGE_CONTEXT'
7cf79f4419 message: Support logging a context with each message
5bf85e2517 message: Add new CMAKE_MESSAGE_LOG_LEVEL variable
aa59badd6f Tests: Message log level tests must fail on unwanted output
7c579f0a03 Help: Move CMAKE_MESSAGE_INDENT variable to correct section
4b021bd3e9 message: Minor refactor to make code less verbose
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !3680
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/dev/feature-CMAKE_MESSAGE_CONTEXT | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Help/release/dev/feature-CMAKE_MESSAGE_CONTEXT b/Help/release/dev/feature-CMAKE_MESSAGE_CONTEXT new file mode 100644 index 0000000..a6a5c71 --- /dev/null +++ b/Help/release/dev/feature-CMAKE_MESSAGE_CONTEXT @@ -0,0 +1,11 @@ +feature-CMAKE_MESSAGE_CONTEXT +----------------------------- + +* The :variable:`CMAKE_MESSAGE_LOG_LEVEL` variable can now be used + to persist a log level between CMake runs, unlike the ``--log-level`` + command line option which only applies to that particular run. + +* The :command:`message` command learned to output context provided in + the :variable:`CMAKE_MESSAGE_CONTEXT` variable for log levels + ``NOTICE`` and below. Enable this output with the new ``--log-context`` + command-line option or :variable:`CMAKE_MESSAGE_CONTEXT_SHOW` variable. |