Skip to content

Commit

Permalink
squash. Add newline chars to end of string.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn committed Oct 22, 2024
1 parent bdd4004 commit 92e0f31
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/main_server/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -556,10 +556,10 @@ Mandatory arguments to long options are mandatory for short options too.
}
}
catch (const irods::exception& e) {
log_server::error("{}: Could not verify catalog schema version: {}", __func__, e.client_display_what());
log_server::error("{}: Could not verify catalog schema version: {}\n", __func__, e.client_display_what());
}
catch (const std::exception& e) {
log_server::error("{}: Could not verify catalog schema version. Is the catalog service role defined in server_config.json?", __func__);
log_server::error("{}: Could not verify catalog schema version. Is the catalog service role defined in server_config.json?\n", __func__);
}

return {false, -1};
Expand Down

0 comments on commit 92e0f31

Please sign in to comment.