Skip to content

Commit

Permalink
Remove duplicate [error] output when failing to launch shell
Browse files Browse the repository at this point in the history
  • Loading branch information
msimberg committed Jul 25, 2024
1 parent 1192202 commit 40b788f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/shell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ int exec(const std::vector<std::string>& args) {
int r = execvp(argv[0], argv.data());
// } // end unsafe

spdlog::error("[error] unable to launch a new shell");
spdlog::error("unable to launch a new shell");

return r;
}
Expand Down

0 comments on commit 40b788f

Please sign in to comment.