We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e485ac7 commit 317847cCopy full SHA for 317847c
src/vt/configs/features/features_featureswitch.h
@@ -64,5 +64,6 @@
64
"debug prints disabled)"
65
#define vt_feature_str_trace_enabled "Tracing Projections"
66
#define vt_feature_str_zoltan "Zoltan for load balancing"
67
+#define vt_feature_str_debug_verbose "Verbose Prints"
68
69
#endif /*INCLUDED_VT_CONFIGS_FEATURES_FEATURES_FEATURESWITCH_H*/
src/vt/runtime/runtime_banner.cc
@@ -139,6 +139,9 @@ void Runtime::printStartupBanner() {
139
#if vt_check_enabled(diagnostics)
140
features.push_back(vt_feature_str_diagnostics);
141
#endif
142
+#if vt_check_enabled(debug_verbose)
143
+ features.push_back(vt_feature_str_debug_verbose);
144
+#endif
145
146
std::string dirty = "";
147
if (vt_git_clean_status == "DIRTY") {
0 commit comments