diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-03-04 17:18:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-04 17:18:32 +0100 |
commit | bc26f23e5ae49f54b4fbd18f692f300254e454eb (patch) | |
tree | c5bed8b8eb3aaf261197a9713eef8b8cc3e13e35 /CMakeLists.txt | |
parent | dde5ce46b2e3e77efc27394b946ef49ce565cd95 (diff) | |
parent | 2ba224e1526681c1a0b1b2b095b1ef2b0874db48 (diff) | |
download | rneovim-bc26f23e5ae49f54b4fbd18f692f300254e454eb.tar.gz rneovim-bc26f23e5ae49f54b4fbd18f692f300254e454eb.tar.bz2 rneovim-bc26f23e5ae49f54b4fbd18f692f300254e454eb.zip |
Merge pull request #22415 from bfredl/log_debug
refactor(log): reduce compile time LOG_LEVEL granularity
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0c445b27b4..1b89718ebd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -135,6 +135,7 @@ endif() option(LOG_LIST_ACTIONS "Add list actions logging" OFF) option(CLANG_ASAN_UBSAN "Enable Clang address & undefined behavior sanitizer for nvim binary." OFF) +option(LOG_DEBUG "Enable debug log messages even in a release build" OFF) option(CLANG_MSAN "Enable Clang memory sanitizer for nvim binary." OFF) option(CLANG_TSAN "Enable Clang thread sanitizer for nvim binary." OFF) |