Don't print addr2line's stderr

This commit is contained in:
Jack Andersen 2018-05-05 15:30:53 -10:00
parent 2e595922be
commit 71bbb3d082
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ void logvisorAbort()
#if __APPLE__
snprintf(cmdLine, 1024, "atos -p %d", getpid());
#else
snprintf(cmdLine, 1024, "addr2line -C -f -e \"%s\"", exeNameBuffer);
snprintf(cmdLine, 1024, "2>/dev/null addr2line -C -f -e \"%s\"", exeNameBuffer);
#endif
std::string cmdLineStr = cmdLine;