Skip to content

Commit

Permalink
Merge pull request #2386 from DARMA-tasking/2385-print-in-vt-header-w…
Browse files Browse the repository at this point in the history
…hen-verbose-prints-are-enabled-at-compile-time

#2385: Print in VT header when verbose prints are enabled at compile-time
  • Loading branch information
lifflander authored Jan 9, 2025
2 parents e485ac7 + 317847c commit 57843f0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/vt/configs/features/features_featureswitch.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,6 @@
"debug prints disabled)"
#define vt_feature_str_trace_enabled "Tracing Projections"
#define vt_feature_str_zoltan "Zoltan for load balancing"
#define vt_feature_str_debug_verbose "Verbose Prints"

#endif /*INCLUDED_VT_CONFIGS_FEATURES_FEATURES_FEATURESWITCH_H*/
3 changes: 3 additions & 0 deletions src/vt/runtime/runtime_banner.cc
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,9 @@ void Runtime::printStartupBanner() {
#if vt_check_enabled(diagnostics)
features.push_back(vt_feature_str_diagnostics);
#endif
#if vt_check_enabled(debug_verbose)
features.push_back(vt_feature_str_debug_verbose);
#endif

std::string dirty = "";
if (vt_git_clean_status == "DIRTY") {
Expand Down

0 comments on commit 57843f0

Please sign in to comment.