Skip to content

Commit

Permalink
#2260: Make verbose logging independent from CI_BUILD flag
Browse files Browse the repository at this point in the history
  • Loading branch information
thearusable committed Apr 22, 2024
1 parent 6bbcc2a commit d737668
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/vt/configs/debug/debug_masterconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ using VTPrintConfig = Configuration<
CtxEnum::unknown
),
static_cast<ModeEnum>(
#if !vt_feature_cmake_ci_build
#if !vt_feature_cmake_ci_build || vt_feature_cmake_debug_verbose
ModeEnum::terse |
ModeEnum::normal |
#if vt_feature_cmake_debug_verbose
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_parallel_harness.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct TestParallelHarnessAny : TestHarnessAny<TestBase> {
addArgs(traceon);
#endif

#if vt_feature_cmake_debug_verbose and !vt_feature_cmake_ci_build
#if vt_feature_cmake_debug_verbose
static char verbose_on[]{"--vt_debug_level=verbose"};
addArgs(verbose_on);
#endif
Expand Down

0 comments on commit d737668

Please sign in to comment.