Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading