Skip to content

Commit

Permalink
Cleaning up output
Browse files Browse the repository at this point in the history
  • Loading branch information
khuck committed Aug 18, 2022
1 parent f5f1fbe commit 41bc390
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/apex/apex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ uint64_t init(const char * thread_name, uint64_t comm_rank,
}
if (comm_rank == 0) {
printf("%s", apex_banner);
printf("%s", instance->version_string.c_str());
printf("APEX Version: %s\n", instance->version_string.c_str());
}
FUNCTION_EXIT
return APEX_NOERROR;
Expand Down
1 change: 0 additions & 1 deletion src/utils/apex_environment_help.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ int main (int argc, char** argv) {
APEX_UNUSED(argc);
APEX_UNUSED(argv);
init("apex_environment_help", 0, 1);
cout << "APEX Version : " << version() << endl;
apex_options::environment_help();
finalize();
return 0;
Expand Down
1 change: 0 additions & 1 deletion src/utils/apex_make_default_config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ int main (int argc, char** argv) {
APEX_UNUSED(argc);
APEX_UNUSED(argv);
init("apex_make_default_config", 0, 1);
cout << "APEX Version : " << version() << endl;
apex_options::make_default_config();
finalize();
return 0;
Expand Down

0 comments on commit 41bc390

Please sign in to comment.