Skip to content

Commit 57843f0

Browse files
authored
Merge pull request #2386 from DARMA-tasking/2385-print-in-vt-header-when-verbose-prints-are-enabled-at-compile-time
#2385: Print in VT header when verbose prints are enabled at compile-time
2 parents e485ac7 + 317847c commit 57843f0

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/vt/configs/features/features_featureswitch.h

+1
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,6 @@
6464
"debug prints disabled)"
6565
#define vt_feature_str_trace_enabled "Tracing Projections"
6666
#define vt_feature_str_zoltan "Zoltan for load balancing"
67+
#define vt_feature_str_debug_verbose "Verbose Prints"
6768

6869
#endif /*INCLUDED_VT_CONFIGS_FEATURES_FEATURES_FEATURESWITCH_H*/

src/vt/runtime/runtime_banner.cc

+3
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,9 @@ void Runtime::printStartupBanner() {
139139
#if vt_check_enabled(diagnostics)
140140
features.push_back(vt_feature_str_diagnostics);
141141
#endif
142+
#if vt_check_enabled(debug_verbose)
143+
features.push_back(vt_feature_str_debug_verbose);
144+
#endif
142145

143146
std::string dirty = "";
144147
if (vt_git_clean_status == "DIRTY") {

0 commit comments

Comments
 (0)