Fixed contract output fetcher thread join issue.

This commit is contained in:
ravinsp
2020-10-06 17:00:38 +05:30
parent 54d6bf5bf6
commit 31048f55b8
2 changed files with 9 additions and 4 deletions

View File

@@ -239,7 +239,7 @@ namespace util
const int wait_options = wait ? 0 : WNOHANG;
if (waitpid(pid, NULL, wait_options) == -1)
{
LOG_ERROR << errno << ": waitpid after kill failed.";
LOG_ERROR << errno << ": waitpid after kill (pid:" << pid << ") failed.";
return -1;
}