mirror of https://github.com/AxioDL/logvisor.git
Don't print addr2line's stderr
This commit is contained in:
parent
2e595922be
commit
71bbb3d082
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue